Interface ISocketConnectedEvent
- 
- All Superinterfaces:
- Event,- ISocketEvent
 - All Known Implementing Classes:
- SocketConnectedEvent
 
 public interface ISocketConnectedEvent extends ISocketEvent Event issued after a socket successfully connected.Can be used to wrap a socket by calling setSocket(Socket).EXPERIMENTAL. This class or interface has been added as part of a work in progress. There is no guarantee that this API will work or that it will remain the same. Please do not use this API without consulting with the ECF team. - Since:
- 3.0
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetSocket(Socket socket)Sets a socket to be used by the app.- 
Methods inherited from interface org.eclipse.ecf.filetransfer.events.socket.ISocketEventgetFactorySocket, getSocket, getSource, isSameFactorySocket
 
- 
 
- 
- 
- 
Method Detail- 
setSocketvoid setSocket(Socket socket) Sets a socket to be used by the app.If this method is not called ISocketEvent.getFactorySocket()andISocketEvent.getSocket()will be the same. OtherwiseISocketEvent.getSocket()will return the passed in socket.- Parameters:
- socket- socket
 
 
- 
 
-