public void Connect(string host, int port) { rlGlueConnection = new RlGlueConnection(); rlGlueConnection.Connect(host, port); rlGlueConnection .Send() .State(RlGlueConnection.ConnectionState.ExperimentConnection) .And() .SizeOfState() .Flush(); }
public ClientAgent(AgentInterface agent) { this.agent = agent; rlGlueConnection = new RlGlueConnection(); }
public ClientEnvironment(EnvironmentInterface environment) { this.environment = environment; this.rlGlueConnection = new RlGlueConnection(); }
public ClientExperiment() { rlGlueConnection = new RlGlueConnection(); }