Example #1
0
        public void Connect(string host, int port)
        {
            rlGlueConnection = new RlGlueConnection();
            rlGlueConnection.Connect(host, port);

            rlGlueConnection
            .Send()
            .State(RlGlueConnection.ConnectionState.ExperimentConnection)
            .And()
            .SizeOfState()
            .Flush();
        }
Example #2
0
 public ClientAgent(AgentInterface agent)
 {
     this.agent       = agent;
     rlGlueConnection = new RlGlueConnection();
 }
 public ClientEnvironment(EnvironmentInterface environment)
 {
     this.environment      = environment;
     this.rlGlueConnection = new RlGlueConnection();
 }
Example #4
0
 public ClientExperiment()
 {
     rlGlueConnection = new RlGlueConnection();
 }