Uses of Interface
py4j.GatewayServerListener
-
Packages that use GatewayServerListener Package Description py4j -
-
Uses of GatewayServerListener in py4j
Classes in py4j that implement GatewayServerListener Modifier and Type Class Description class
DefaultGatewayServerListener
This class implements a defaultGatewayServerListener
.class
GatewayServer
This class enables Python programs to access a Java program.class
JavaServer
This class extends GatewayServer by implementing a new threading model: a thread always use the same connection to the other side so callbacks are executed in the calling thread.class
PythonClient
Subclass of CallbackClient that implements the new threading model, ensuring that each thread uses its own connection.Fields in py4j with type parameters of type GatewayServerListener Modifier and Type Field Description protected java.util.List<GatewayServerListener>
GatewayConnection. listeners
Methods in py4j that return types with arguments of type GatewayServerListener Modifier and Type Method Description java.util.List<GatewayServerListener>
GatewayServer. getListeners()
java.util.List<GatewayServerListener>
Py4JJavaServer. getListeners()
Methods in py4j with parameters of type GatewayServerListener Modifier and Type Method Description void
GatewayServer. addListener(GatewayServerListener listener)
void
Py4JJavaServer. addListener(GatewayServerListener listener)
void
GatewayServer. removeListener(GatewayServerListener listener)
void
Py4JJavaServer. removeListener(GatewayServerListener listener)
-