Package org.onlab.util
Interface TriConsumer<U,V,W>
- 
- Type Parameters:
- U- type of first argument
- V- type of second argument
- W- type of third argument
 
 public interface TriConsumer<U,V,W>A consumer that accepts three arguments.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaccept(U arg1, V arg2, W arg3)Applies the given arguments to the function.
 
-