- java.lang.Object
-
- swim.concurrent.TheaterDef
-
-
Constructor Summary
Constructors Constructor Description TheaterDef(String name, int parallelism, ScheduleDef scheduleDef)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected TheaterDef
copy(String name, int parallelism, ScheduleDef scheduleDef)
<T> Output<T>
debug(Output<T> output)
Writes a developer readable, debug-formatted string representation of this object tooutput
.boolean
equals(Object other)
int
hashCode()
String
name()
TheaterDef
name(String name)
int
parallelism()
TheaterDef
parallelism(int parallelism)
ScheduleDef
scheduleDef()
TheaterDef
scheduleDef(ScheduleDef scheduleDef)
static TheaterDef
standard()
static Form<TheaterDef>
theaterForm()
static Form<TheaterDef>
theaterForm(Form<ScheduleDef> scheduleForm)
String
toString()
-
-
-
Constructor Detail
-
TheaterDef
public TheaterDef(String name, int parallelism, ScheduleDef scheduleDef)
-
-
Method Detail
-
name
public final String name()
-
name
public TheaterDef name(String name)
-
parallelism
public final int parallelism()
-
parallelism
public TheaterDef parallelism(int parallelism)
-
scheduleDef
public final ScheduleDef scheduleDef()
-
scheduleDef
public TheaterDef scheduleDef(ScheduleDef scheduleDef)
-
copy
protected TheaterDef copy(String name, int parallelism, ScheduleDef scheduleDef)
-
debug
public <T> Output<T> debug(Output<T> output)
Description copied from interface:Debug
Writes a developer readable, debug-formatted string representation of this object tooutput
.
-
standard
public static TheaterDef standard()
-
theaterForm
@Kind public static Form<TheaterDef> theaterForm()
-
theaterForm
public static Form<TheaterDef> theaterForm(Form<ScheduleDef> scheduleForm)
-
-