Package io.deephaven.client.impl
Interface ExecuteCodeOptions
@Immutable
public interface ExecuteCodeOptions
An object to control the behavior of the
executeCode
API-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
static enum
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic ExecuteCodeOptions.Builder
builder()
Create a new options builder.default ExecuteCodeOptions.SystemicType
If the code should be executed systemically or not.
-
Field Details
-
DEFAULT
The default options. See the method javadoc for default values.
-
-
Method Details
-
executeSystemic
If the code should be executed systemically or not. When code is executed systemically, failures of the script or tables in the script are fatal.The default value is
null
which uses the system default behavior. See the documentation for SystemicObjectTracker for more details.- Returns:
- if the code should be systemically executed.
-
builder
Create a new options builder.- Returns:
- a new builder
-