Uses of Class
com.sun.n1.sps.model.plan.ExecutionMode

Packages that use ExecutionMode
com.sun.n1.sps.model.plan   
 

Uses of ExecutionMode in com.sun.n1.sps.model.plan
 

Fields in com.sun.n1.sps.model.plan declared as ExecutionMode
static ExecutionMode ExecutionMode.PARALLEL
          ExecutionMode value indicating that the associated simple plan will be executed in parallel on each of the target hosts, meaning more than one host may execute the plan concurrently.
static ExecutionMode ExecutionMode.SERIES
          ExecutionMode value indicating that the associated simple plan will be executed in series on each of the target hosts, meaning all plan steps wil complete on one host before running the plan on the next host.
 

Methods in com.sun.n1.sps.model.plan that return ExecutionMode
 ExecutionMode ExecutionMode.Factory.get(int value)
          Returns the execution mode associated with the passed int value.
 ExecutionMode ExecutionMode.Factory.get(java.lang.String value)
          Returns the execution mode associated with the passed String value.
 ExecutionMode[] ExecutionMode.Factory.getAll()
          Returns the array of all known execution mode enums.
 ExecutionMode ExecutionPlan.getExecutionMode()
          Returns the Execution mode for this plan.