Package org.aksw.commons.util.sink
Interface Sink<T>
-
- All Superinterfaces:
AutoCloseable
- All Known Implementing Classes:
BulkingSink
public interface Sink<T> extends AutoCloseable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaccept(T item)voidclose()voidflush()
-
-
-
Method Detail
-
accept
void accept(T item)
-
flush
void flush()
-
close
void close()
- Specified by:
closein interfaceAutoCloseable
-
-