public interface GatewayServerListener
A client can implement this listener to be notified of Gateway events.
Modifier and Type | Method and Description |
---|---|
void |
connectionError(java.lang.Exception e) |
void |
connectionStarted(Py4JServerConnection gatewayConnection) |
void |
connectionStopped(Py4JServerConnection gatewayConnection) |
void |
serverError(java.lang.Exception e)
This method may be called concurrently with serverPostShutdown().
|
void |
serverPostShutdown()
This method may be called concurrently with serverStopped() and
serverError().
|
void |
serverPreShutdown() |
void |
serverStarted() |
void |
serverStopped()
This method may be called concurrently with serverPostShutdown().
|
void connectionError(java.lang.Exception e)
void connectionStarted(Py4JServerConnection gatewayConnection)
void connectionStopped(Py4JServerConnection gatewayConnection)
void serverError(java.lang.Exception e)
This method may be called concurrently with serverPostShutdown().
Typically a one thread calls shutdown() and then, the thread running the GatewayServer breaks from the connection accept loop.
void serverPostShutdown()
This method may be called concurrently with serverStopped() and serverError().
Typically a one thread calls shutdown() and then, the thread running the GatewayServer breaks from the connection accept loop.
void serverPreShutdown()
void serverStarted()
void serverStopped()
This method may be called concurrently with serverPostShutdown().
Typically a one thread calls shutdown() and then, the thread running the GatewayServer breaks from the connection accept loop.