Package org.prevayler.socketserver.transactions

Examples of org.prevayler.socketserver.transactions.Disconnect


   *
   * @throws Exception
   */
  public void close() throws Exception {
    out = new ObjectOutputStream(socket.getOutputStream());
    out.writeObject(new Disconnect());
    socket.close();
  }
View Full Code Here

TOP

Related Classes of org.prevayler.socketserver.transactions.Disconnect

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.