-
public interface ErrorHandlerAn interface for handling the two types of error conditions from a queue.
-
-
Method Summary
Modifier and Type Method Description voidpacketDropped()Called when a packet is dropped from the queue because a new packetwas added while it was full. voidpacketHandlingFailed(Throwable t)Called when handling of a packet produces an exception. -
-
Method Detail
-
packetDropped
void packetDropped()
Called when a packet is dropped from the queue because a new packetwas added while it was full.
-
packetHandlingFailed
void packetHandlingFailed(Throwable t)
Called when handling of a packet produces an exception.
-
-
-
-