Runtime components : Service engine : The references : Create remote session
  
Create remote session
There are 2 overloading methods to create remote session (for launching the remote Flow later).
public RemoteSession createRemoteSession(String locale, String timeZone, String intendingOperation) throws Exception
public RemoteSession createRemoteSession(String locale, String timeZone, String intendingOperation, String designatedHost) throws Exception
They have almost the identical function, which is to create a remote session < RemoteSession > with < locale > and < timeZone >.
For the meaning of < intendingOperation > and < designatedHost >
Please note that the following Flow would be run under the same session, which means in the same host server, called session affinity. So here < intendingOperation > means a logical group name, and it could refer to lots of Flows.
Go up to
The references