Class ConsoleSession
- java.lang.Object
-
- org.eclipse.osgi.framework.console.ConsoleSession
-
- All Implemented Interfaces:
ServiceFactory<Object>
public abstract class ConsoleSession extends Object implements ServiceFactory<Object>
A console session service provides the input and output to a single console session. The input will be used by the console to read in console commands. The output will be used to print the results of console commands.The console session must be registered as an OSGi service in order to be associated with a console instance. The console implementation will discover any console session services and will create a new console instance using the console session for input and output. When a session is closed then the console session service will be unregistered and the console instance will terminate and be disposed of. The console instance will also terminate if the console session service is unregistered for any reason.
- Since:
- 3.6
-
-
Constructor Summary
Constructors Constructor Description ConsoleSession()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description void
close()
Called by the console implementation to free resources associated with this console session.protected abstract void
doClose()
Called by theclose()
method to free resources associated with this console session.abstract InputStream
getInput()
Returns the input for this console session.abstract OutputStream
getOutput()
Returns the output for this console session.Object
getService(Bundle bundle, ServiceRegistration<Object> registration)
void
ungetService(Bundle bundle, ServiceRegistration<Object> registration, Object service)
-
-
-
Method Detail
-
close
public final void close()
Called by the console implementation to free resources associated with this console session. This method will result in the console session service being unregistered from the service registry.- Restriction:
- This method is not intended to be referenced by clients.
-
doClose
protected abstract void doClose()
Called by theclose()
method to free resources associated with this console session. For example, closing the streams associated with the input and output for this session.- Restriction:
- This method is not intended to be referenced by clients.
-
getInput
public abstract InputStream getInput()
Returns the input for this console session. This input will be used to read console commands from the user of the session.- Returns:
- the input for this console session
- Restriction:
- This method is not intended to be referenced by clients.
-
getOutput
public abstract OutputStream getOutput()
Returns the output for this console session. This output will be used to write the results of console commands.- Returns:
- the output for this console session.
- Restriction:
- This method is not intended to be referenced by clients.
-
getService
public final Object getService(Bundle bundle, ServiceRegistration<Object> registration)
- Specified by:
getService
in interfaceServiceFactory<Object>
- Restriction:
- This method is not intended to be referenced by clients.
-
ungetService
public final void ungetService(Bundle bundle, ServiceRegistration<Object> registration, Object service)
- Specified by:
ungetService
in interfaceServiceFactory<Object>
- Restriction:
- This method is not intended to be referenced by clients.
-
-