Package org.eclipse.net4j
Interface ITransportConfig
- 
- All Superinterfaces:
- org.eclipse.net4j.util.security.INegotiatorAware
 
 public interface ITransportConfig extends org.eclipse.net4j.util.security.INegotiatorAwareA common transport configuration that specifies basic dependencies forchannel multiplexers,connectorsandacceptors.- Since:
- 2.0
- Author:
- Eike Stepper
- No Implement
- This interface is not intended to be implemented by clients.
- No Extend
- This interface is not intended to be extended by clients.
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description IBufferProvidergetBufferProvider()org.eclipse.net4j.util.lifecycle.ILifecyclegetLifecycle()Returns the lifecycle delegate used for inactivity checks in the setter implementations of this transport configuration.IProtocolProvidergetProtocolProvider()java.util.concurrent.ExecutorServicegetReceiveExecutor()voidsetBufferProvider(IBufferProvider bufferProvider)voidsetLifecycle(org.eclipse.net4j.util.lifecycle.ILifecycle lifecycle)Sets the lifecycle delegate to be used for inactivity checks in the setter implementations of this transport configuration.voidsetProtocolProvider(IProtocolProvider protocolProvider)voidsetReceiveExecutor(java.util.concurrent.ExecutorService receiveExecutor)
 
- 
- 
- 
Method Detail- 
getLifecycleorg.eclipse.net4j.util.lifecycle.ILifecycle getLifecycle() Returns the lifecycle delegate used for inactivity checks in the setter implementations of this transport configuration.
 - 
setLifecyclevoid setLifecycle(org.eclipse.net4j.util.lifecycle.ILifecycle lifecycle) Sets the lifecycle delegate to be used for inactivity checks in the setter implementations of this transport configuration.
 - 
getBufferProviderIBufferProvider getBufferProvider() 
 - 
setBufferProvidervoid setBufferProvider(IBufferProvider bufferProvider) 
 - 
getReceiveExecutorjava.util.concurrent.ExecutorService getReceiveExecutor() 
 - 
setReceiveExecutorvoid setReceiveExecutor(java.util.concurrent.ExecutorService receiveExecutor) 
 - 
getProtocolProviderIProtocolProvider getProtocolProvider() 
 - 
setProtocolProvidervoid setProtocolProvider(IProtocolProvider protocolProvider) 
 
- 
 
-