- Listener - Class in com.esotericsoftware.kryonet
-
Used to be notified about connection events.
- Listener() - Constructor for class com.esotericsoftware.kryonet.Listener
-
- Listener.LagListener - Class in com.esotericsoftware.kryonet
-
Delays the notification of the wrapped listener to simulate lag on incoming objects.
- Listener.LagListener(int, int, Listener) - Constructor for class com.esotericsoftware.kryonet.Listener.LagListener
-
- Listener.QueuedListener - Class in com.esotericsoftware.kryonet
-
Wraps a listener and queues notifications as runnables
.
- Listener.QueuedListener(Listener) - Constructor for class com.esotericsoftware.kryonet.Listener.QueuedListener
-
- Listener.ReflectionListener - Class in com.esotericsoftware.kryonet
-
Uses reflection to called "received(Connection, XXX)" on the listener, where XXX is the received object type.
- Listener.ReflectionListener() - Constructor for class com.esotericsoftware.kryonet.Listener.ReflectionListener
-
- Listener.ThreadedListener - Class in com.esotericsoftware.kryonet
-
Wraps a listener and processes notification events on a separate thread.
- Listener.ThreadedListener(Listener) - Constructor for class com.esotericsoftware.kryonet.Listener.ThreadedListener
-
Creates a single thread to process notification events.
- Listener.ThreadedListener(Listener, ExecutorService) - Constructor for class com.esotericsoftware.kryonet.Listener.ThreadedListener
-
Uses the specified threadPool to process notification events.