ExecuteIn (enum)

Whether the command is executed explicitly by the end-user, or is scheduled (for example, using the BackgroundService ) to be executed asynchronously at some later time.

API

ExecuteIn.java
enum ExecuteIn {
  FOREGROUND     (1)
  BACKGROUND     (2)
}
1 FOREGROUND

Command executed in immediately, in the current thread of execution.

2 BACKGROUND

Command scheduled to be executed at some later time, in a "background" thread of execution.

Members

FOREGROUND

Command executed in immediately, in the current thread of execution.

BACKGROUND

Command scheduled to be executed at some later time, in a "background" thread of execution.