withPriority method

InteractionBuilder<T> withPriority(
  1. int priority
)

Sets the execution priority.

Implementation

InteractionBuilder<T> withPriority(int priority) {
  _priority = priority;
  return this;
}