Package org.apache.uima.ducc.common

Examples of org.apache.uima.ducc.common.NodeIdentity


            throw new IllegalArgumentException("Cannot access log directory.");
        }
        setWorkingDirectory();
        setUser();

        NodeIdentity ni = new NodeIdentity();
        host_address = ni.getIp();
       
        initConsoleListener();

        String targetUrl = DuccUiUtilities.dispatchUrl(servlet);
        dispatcher = new DuccEventHttpDispatcher(targetUrl);
View Full Code Here


    {
        this.submit = submit;
        this.sock = new ServerSocket(0);
        this.consoleCb = consoleCb;
       
        NodeIdentity ni = new NodeIdentity();
        String host_address = ni.getIp()
        int console_listener_port = sock.getLocalPort();
        this.console_host_address = host_address + ":" + console_listener_port;
         

        debug = submit.debug; //isDebug();
View Full Code Here

  private ITimeWindow timeWindow = null;
 
  public DuccReservation(DuccId duccId, Node node, int shares) {
    setDuccId(duccId);
    setNode(node);
    NodeIdentity nodeIdentity = node.getNodeIdentity();
    setNodeIdentity(nodeIdentity);
    setShares(shares);
  }
View Full Code Here

    ThreadLocation threadLocation = null;
    String shareNodeIP = null;
    String shareNodePID = null;
    try {
      // get subject process node and PID
      NodeIdentity nodeIdentity = duccProcess.getNodeIdentity();
      String processNodeIP = nodeIdentity.getIp();
      String processNodePID = duccProcess.getPID();
      // get CAS-in-question seqNo
      CasTuple casTuple = cmap.get(casId);
      seqNo = casTuple.getSeqno();
      // get CAS-in-question thread location
View Full Code Here

TOP

Related Classes of org.apache.uima.ducc.common.NodeIdentity

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.