Package com.yz.net

Examples of com.yz.net.ClosedSessionException


   
    WriteFuture future = new WriteFuture(this, ByteBuffer.wrap(msg.getContent()));
   
    //会话已经被关闭了
    if(isClose) {
      future.setComplete(new ClosedSessionException("会话已经被关闭了...."));
      return future;
    }
   
    if(!this.isCloseing.get()) {
      this.writeQueue.offer(future);
View Full Code Here

TOP

Related Classes of com.yz.net.ClosedSessionException

Copyright © 2018 www.massapicom. 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.