Package com.iizix.gyro
Interface IClientSessionConnectionListener
public interface IClientSessionConnectionListener
Interface used to listen to new client session connections and their disposal.
- Author:
- Christopher Mindus
Method Summary
Modifier and TypeMethodDescriptionvoidonClientConnection(IAppSessionGyro appGyro, IClientSessionGyro clientGyro) Called when a new client session is connected to the application session.voidonClientDisposed(IAppSessionGyro appGyro, IClientSessionGyro clientGyro) Called when a client session is disposed of.
Method Details
onClientConnection
Called when a new client session is connected to the application session. When called, the client session has just been created and is not in a full ready state.- Parameters:
appGyro- The application session gyro.clientGyro- The client session gyro.
onClientDisposed
Called when a client session is disposed of.- Parameters:
appGyro- The application session gyro.clientGyro- The client session gyro.