Examples of leave()


Examples of org.jbpm.graph.def.Node.leave()

    Token token = executionContext.getToken();
    Node mergeNode = token.getNode();
   
    // if this is a simple merge
    if ( ! isSynchronized ) {
      mergeNode.leave(executionContext);

    // this is a synchronizing multi merge
    } else {
     
      Collection<Token> concurrentTokens = token.getParent().getChildren().values();
View Full Code Here

Examples of org.jbpm.graph.def.Node.leave()

        }       
      }
     
      if ( reactivate ) {
        for (Token concurrentToken : concurrentTokens) {
          mergeNode.leave(new ExecutionContext(concurrentToken));         
        }
      }
    }
  }
 
View Full Code Here

Examples of org.jbpm.graph.def.Node.leave()

  public static class RecordNode implements ActionHandler {
    private static final long serialVersionUID = 1L;
    public void execute(ExecutionContext executionContext) throws Exception {
      Node node = executionContext.getNode();
      nodes.add(node.getName());
      node.leave(executionContext);
    }
  }
 
  CommandExecutorThread commandExecutor = null;
 
View Full Code Here

Examples of org.jivesoftware.smackx.muc.MultiUserChat.leave()

      try {
      try {
        for (WeakReference<MultiUserChat> entry : groupChatCache.values()) {
          MultiUserChat chat = entry.get();
          if (chat != null && chat.isJoined()) {
            chat.leave();
          }
        }
        // there seems to be no way to leave a 1-on-1 chat with Smack
       
        this.groupChatCache.clear();
View Full Code Here

Examples of org.mctourney.autoreferee.AutoRefTeam.leave()

    if (match == null) return;

    // leave the team, if necessary
    AutoRefTeam team = plugin.getTeam(player);
    if (team != null) match.messageReferees("player", player.getName(), "logout");
    if (team != null && !match.getCurrentState().inProgress()) team.leave(player);

    AutoRefPlayer apl = match.getPlayer(player);
    if (apl != null && player.getLocation() != null)
      apl.setLastLogoutLocation(player.getLocation());
View Full Code Here

Examples of org.pdf4j.saxon.trace.TraceListener.leave()

             listener.enter(getInstructionInfo(), context);
        }
        // Don't attempt tail call optimization when tracing, the results are too confusing
        child.process(context);
         if (controller.isTracing()) {
             listener.leave(getInstructionInfo());
        }
        return null;
    }

    /**
 
View Full Code Here

Examples of org.perl6.nqp.runtime.CallFrame.leave()

   
            /* Return the type object. */
            Ops.return_o(type_object, cf);
        }
        finally {
            cf.leave();
        }
    }
   
    public void add_method(ThreadContext tc, CodeRef cr, CallSiteDescriptor csd, Object[] args) {
        CallFrame cf = new CallFrame(tc, cr);
View Full Code Here

Examples of org.red5.server.api.IScopeHandler.leave()

        clients.remove(client);
        clientStats.decrement();
        if (handler != null) {
          try {
            // there may be a timeout here ?
            handler.leave(client, this);
          } catch (Exception e) {
            log.error("Error while executing \"leave\" for client {} on handler {}. {}", new Object[]{conn, handler, e});
          }
        }
      }
View Full Code Here

Examples of org.red5.server.api.scope.IScopeHandler.leave()

        } catch (Exception e) {
          log.error("Error while executing \"disconnect\" for connection {} on handler {}. {}", new Object[] { conn, handler, e });
        }
        try {
          // there may be a timeout here ?
          handler.leave(client, this);
        } catch (Exception e) {
          log.error("Error while executing \"leave\" for client {} on handler {}. {}", new Object[] { conn, handler, e });
        }
      }
      // remove listener
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.