Package org.apache.geronimo.gshell.remote.server

Examples of org.apache.geronimo.gshell.remote.server.RemoteIO


        this.executor = executor;
    }

    public void handle(Session session, ServerSessionContext context, OpenShellMessage message) throws Exception {
        // Setup the I/O context (w/o auto-flushing)
        context.io = new RemoteIO(session);
        // Setup shell environemnt
        context.env = new DefaultEnvironment(context.io);

        // Create a new shell instance
        context.shell = new DefaultRemoteShell(shellInfo, executor, context.env);
View Full Code Here

TOP

Related Classes of org.apache.geronimo.gshell.remote.server.RemoteIO

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.