-
interface AsyncQueueHandler.Handler<T>A simple interface to handle enqueued T items.
-
-
Method Summary
Modifier and Type Method Description abstract voidhandleItem(T item)Does something with an item. -
-
Method Detail
-
handleItem
abstract void handleItem(T item)
Does something with an item.
- Parameters:
item- the item to do something with.
-
-
-
-