1 24 25 package org.objectweb.dream.channel; 26 27 import java.io.IOException ; 28 29 import org.objectweb.dream.message.Message; 30 31 35 public interface SocketManager 36 { 37 38 String ITF_NAME = "socket-manager"; 39 40 48 SocketState getSocket(Message message) throws IOException , 49 InterruptedException ; 50 51 58 void releaseSocket(SocketState socketState, boolean error); 59 } | Popular Tags |