Package com.catify.processengine.core.nodes

Examples of com.catify.processengine.core.nodes.ServiceNodeBridge


      TProcess processJaxb, ArrayList<TSubProcess> subProcessesJaxb, TFlowNode flowNodeJaxb,
       List<TSequenceFlow> sequenceFlowsJaxb) {
   
    // create flow node actors (a bridge factory is used to be able to pass parameters to the UntypedActorFactory)
    ActorRef nodeServiceActor = this.actorSystem.actorOf(new Props(
        new ServiceNodeBridge(clientId, processJaxb, subProcessesJaxb, flowNodeJaxb, sequenceFlowsJaxb)
          ).withDispatcher("file-mailbox-dispatcher"), ActorReferenceService.getActorReferenceString(
            IdService.getUniqueFlowNodeId(clientId, processJaxb, subProcessesJaxb, flowNodeJaxb)));
   
    LOG.debug(String.format("%s --> resulting akka object: %s", flowNodeJaxb,
        nodeServiceActor.toString()));
View Full Code Here

TOP

Related Classes of com.catify.processengine.core.nodes.ServiceNodeBridge

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.