/* * 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.portal.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.portal.workflow.InstanceLogWorkflow}. * Used to invoke child workflows asynchronously from parent workflow code. * Created through {@link InstanceLogWorkflowClientFactory#getClient}. * <p> * When running outside of the scope of a workflow use {@link InstanceLogWorkflowClientExternal} instead. */ public interface InstanceLogWorkflowClient extends WorkflowClient { /** * Generated from {@link com.eucalyptus.portal.workflow.InstanceLogWorkflow#logInstanceHourly} */ Promise<Void> logInstanceHourly(); /** * Generated from {@link com.eucalyptus.portal.workflow.InstanceLogWorkflow#logInstanceHourly} */ Promise<Void> logInstanceHourly(Promise<?>... waitFor); /** * Generated from {@link com.eucalyptus.portal.workflow.InstanceLogWorkflow#logInstanceHourly} */ Promise<Void> logInstanceHourly(StartWorkflowOptions optionsOverride, Promise<?>... waitFor); }