Package org.structr.agent

Examples of org.structr.agent.AgentService


  }

  @Override
  public void processTasks(Task... tasks) {

    final AgentService agentService = getService(AgentService.class);
    if(agentService != null) {

      for(final Task task : tasks) {

        agentService.processTask(task);
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.structr.agent.AgentService

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.