/* * This code was generated by AWS Flow Framework Annotation Processor. * Refer to Amazon Simple Workflow Service documentation at http://aws.amazon.com/documentation/swf * * Any changes made directly to this file will be lost when * the code is regenerated. */ package com.eucalyptus.loadbalancing.workflow; import com.amazonaws.services.simpleworkflow.flow.core.Promise; import com.amazonaws.services.simpleworkflow.flow.StartWorkflowOptions; import com.amazonaws.services.simpleworkflow.flow.WorkflowClient; /** * Generated from {@link com.eucalyptus.loadbalancing.workflow.InstanceStatusWorkflow}. * Used to invoke child workflows asynchronously from parent workflow code. * Created through {@link InstanceStatusWorkflowClientFactory#getClient}. * <p> * When running outside of the scope of a workflow use {@link InstanceStatusWorkflowClientExternal} instead. */ public interface InstanceStatusWorkflowClient extends WorkflowClient { /** * Generated from {@link com.eucalyptus.loadbalancing.workflow.InstanceStatusWorkflow#pollInstanceStatus} */ Promise<Void> pollInstanceStatus(String accountId, String loadbalancer); /** * Generated from {@link com.eucalyptus.loadbalancing.workflow.InstanceStatusWorkflow#pollInstanceStatus} */ Promise<Void> pollInstanceStatus(String accountId, String loadbalancer, Promise<?>... waitFor); /** * Generated from {@link com.eucalyptus.loadbalancing.workflow.InstanceStatusWorkflow#pollInstanceStatus} */ Promise<Void> pollInstanceStatus(String accountId, String loadbalancer, StartWorkflowOptions optionsOverride, Promise<?>... waitFor); /** * Generated from {@link com.eucalyptus.loadbalancing.workflow.InstanceStatusWorkflow#pollInstanceStatus} */ Promise<Void> pollInstanceStatus(Promise<String> accountId, Promise<String> loadbalancer); /** * Generated from {@link com.eucalyptus.loadbalancing.workflow.InstanceStatusWorkflow#pollInstanceStatus} */ Promise<Void> pollInstanceStatus(Promise<String> accountId, Promise<String> loadbalancer, Promise<?>... waitFor); /** * Generated from {@link com.eucalyptus.loadbalancing.workflow.InstanceStatusWorkflow#pollInstanceStatus} */ Promise<Void> pollInstanceStatus(Promise<String> accountId, Promise<String> loadbalancer, StartWorkflowOptions optionsOverride, Promise<?>... waitFor); /** * Generated from {@link com.eucalyptus.loadbalancing.workflow.InstanceStatusWorkflow#pollImmediately} */ void pollImmediately(); }