py4j
Interface GatewayServerListener

All Known Implementing Classes:
DefaultGatewayServerListener

public interface GatewayServerListener

A client can implement this listener to be notified of Gateway events.

Author:
Barthelemy Dagenais

Method Summary
 void connectionError(Exception e)
           
 void connectionStarted()
           
 void connectionStopped()
           
 void serverError(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().
 

Method Detail

serverStarted

void serverStarted()

serverStopped

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.


serverError

void serverError(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.


serverPreShutdown

void serverPreShutdown()

serverPostShutdown

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.


connectionStarted

void connectionStarted()

connectionStopped

void connectionStopped()

connectionError

void connectionError(Exception e)