Uses of Interface
py4j.Py4JPythonClient
-
Packages that use Py4JPythonClient Package Description py4j -
-
Uses of Py4JPythonClient in py4j
Subinterfaces of Py4JPythonClient in py4j Modifier and Type Interface Description interface
Py4JPythonClientPerThread
Classes in py4j that implement Py4JPythonClient Modifier and Type Class Description class
CallbackClient
A CallbackClient is responsible for managing communication channels: channels are created as needed (e.g., one per concurrent thread) and are closed after a certain time.class
PythonClient
Subclass of CallbackClient that implements the new threading model, ensuring that each thread uses its own connection.Methods in py4j that return Py4JPythonClient Modifier and Type Method Description Py4JPythonClient
CallbackClient. copyWith(java.net.InetAddress pythonAddress, int pythonPort)
Creates a callback client which connects to the given address and port, but retains all the other settings (like theCallbackClient.minConnectionTime
and theCallbackClient.socketFactory
.Py4JPythonClient
Py4JPythonClient. copyWith(java.net.InetAddress pythonAddress, int pythonPort)
Creates a callback client which connects to the given address and port, but retains all the other settings (like the minConnectionTime and the socketFactory).Py4JPythonClient
PythonClient. copyWith(java.net.InetAddress pythonAddress, int pythonPort)
Py4JPythonClient
Gateway. getCallbackClient()
Py4JPythonClient
GatewayServer. getCallbackClient()
Py4JPythonClient
ClientServer. getPythonClient()
Constructors in py4j with parameters of type Py4JPythonClient Constructor Description Gateway(java.lang.Object entryPoint, Py4JPythonClient cbClient)
GatewayServer(java.lang.Object entryPoint, int port, int connectTimeout, int readTimeout, java.util.List<java.lang.Class<? extends Command>> customCommands, Py4JPythonClient cbClient)
GatewayServer(java.lang.Object entryPoint, int port, java.net.InetAddress address, int connectTimeout, int readTimeout, java.util.List<java.lang.Class<? extends Command>> customCommands, Py4JPythonClient cbClient)
GatewayServer(java.lang.Object entryPoint, int port, java.net.InetAddress address, int connectTimeout, int readTimeout, java.util.List<java.lang.Class<? extends Command>> customCommands, Py4JPythonClient cbClient, javax.net.ServerSocketFactory sSocketFactory)
-