Package com.firefly.net.support

Examples of com.firefly.net.support.TcpConnection.send()


    public void run() {
      TcpConnection c = client.connect();
      try {
        for (int i = 0; i < LOOP; i++) {
          String message = "hello world! " + c.getId();
          String ret = (String) c.send(message);
          log.debug("rev: {}", ret);
        }
      } finally {
        if (c != null)
          c.close(false);
View Full Code Here


    @Override
    public void run() {
      TcpConnection c = client.connect();
      for (int i = 0; i < LOOP; i++) {
        String message = "hello world! " + c.getId();
        c.send(message, new MessageReceiveCallBack() {

          @Override
          public void messageRecieved(Session session, Object obj) {
            log.debug("rev: {}", obj);
          }
View Full Code Here

            log.debug("rev: {}", obj);
          }
        });

      }
      c.send("quit", new MessageReceiveCallBack() {

        @Override
        public void messageRecieved(Session session, Object obj) {
          log.debug("rev: {}", obj);
          log.debug("session {} complete", session.getSessionId());
View Full Code Here

public class SimpleTcpClientExample {
  public static void main(String[] args) {
    final SimpleTcpClient client = new SimpleTcpClient("localhost", 9900,
        new StringLineDecoder(), new StringLineEncoder());
    TcpConnection c = client.connect();
    c.send("hello client 1", new MessageReceiveCallBack() {

      @Override
      public void messageRecieved(Session session, Object obj) {
        System.out.println("con1|" + obj.toString());
View Full Code Here

        System.out.println("con1|" + obj.toString());

      }
    });

    c.send("test client 2", new MessageReceiveCallBack() {

      @Override
      public void messageRecieved(Session session, Object obj) {
        System.out.println("con1|" + obj.toString());
View Full Code Here

        System.out.println("con1|" + obj.toString());

      }
    });

    c.send("test client 3", new MessageReceiveCallBack() {

      @Override
      public void messageRecieved(Session session, Object obj) {
        System.out.println("con1|" + obj.toString());
      }
View Full Code Here

      public void messageRecieved(Session session, Object obj) {
        System.out.println("con1|" + obj.toString());
      }
    });

    c.send("quit", new MessageReceiveCallBack() {

      @Override
      public void messageRecieved(Session session, Object obj) {
        System.out.println("con1|" + obj.toString());
      }
View Full Code Here

        System.out.println("con1|" + obj.toString());
      }
    });

    TcpConnection c2 = client.connect();
    System.out.println("con2|" + c2.send("getfile"));
    c2.close(false);

   
  }
}
View Full Code Here

        public void run() {
          final TcpConnection c = client.connect();
          Assert.assertThat(c.isOpen(), is(true));
          log.debug("main thread {}", Thread.currentThread()
              .toString());
          Assert.assertThat((String) c.send("hello client"), is("hello client"));
          Assert.assertThat((String) c.send("hello multithread test"), is("hello multithread test"));
          Assert.assertThat((String) c.send("getfile"), is("zero copy file transfers"));
          Assert.assertThat((String) c.send("quit"), is("bye!"));
          log.debug("complete session {}", c.getId());
        }
View Full Code Here

          final TcpConnection c = client.connect();
          Assert.assertThat(c.isOpen(), is(true));
          log.debug("main thread {}", Thread.currentThread()
              .toString());
          Assert.assertThat((String) c.send("hello client"), is("hello client"));
          Assert.assertThat((String) c.send("hello multithread test"), is("hello multithread test"));
          Assert.assertThat((String) c.send("getfile"), is("zero copy file transfers"));
          Assert.assertThat((String) c.send("quit"), is("bye!"));
          log.debug("complete session {}", c.getId());
        }
      });
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.