Callback.NOOP is obviously non-blocking.

This commit is contained in:
Simone Bordet 2017-08-22 15:46:33 +02:00
parent b9a946f76e
commit 927fe9ec44
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ public interface Callback
* Instance of Adapter that can be used when the callback methods need an empty
* implementation without incurring in the cost of allocating a new Adapter object.
*/
Callback NOOP = new Callback()
Callback NOOP = new Callback.NonBlocking()
{
};