Package org.crsh.shell.impl.async

Examples of org.crsh.shell.impl.async.AsyncShell


    return new SyncTerm();
  }

  @Override
  protected Processor createProcessor(SyncTerm term, SyncShell shell) {
    AsyncShell async = new AsyncShell(Executors.newSingleThreadExecutor(), shell);
    return new Processor(term, async);
  }
View Full Code Here


  }

  public Shell create(Principal principal, boolean async) {
    CRaSHSession session = crash.createSession(principal);
    if (async) {
      return new AsyncShell(getContext().getExecutor(), session);
    } else {
      return session;
    }
  }
View Full Code Here

TOP

Related Classes of org.crsh.shell.impl.async.AsyncShell

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.