Config

sealed
trait Config[T <: Txn[T]] extends ConfigLike[T]
Companion
object
trait ConfigLike[T]
class Object
trait Matchable
class Any

Value members

Abstract methods

def client: Config
def server: Config

Inherited methods

def actions: Iterable[Entry[T]]
Inherited from
ConfigLike
def beforePlay: (T, Server) => Unit
Inherited from
ConfigLike
def beforePrepare: (T, Server) => Unit

An arbitrary function may be provided which is called when the server is initialized (logical time zero). This entry is typically used to set up extra routing synths, main volume, etc.

An arbitrary function may be provided which is called when the server is initialized (logical time zero). This entry is typically used to set up extra routing synths, main volume, etc.

Inherited from
ConfigLike
def group: Iterable[Source[T, Obj[T]]]

The group to transport through the bounce. This parameter is initially unspecified in the builder, and calling the getter will throw an error. This parameter must be specified before generating a Config instance.

The group to transport through the bounce. This parameter is initially unspecified in the builder, and calling the getter will throw an error. This parameter must be specified before generating a Config instance.

Inherited from
ConfigLike
def realtime: Boolean

Whether to run the server in real-time or offline.

Whether to run the server in real-time or offline.

Inherited from
ConfigLike
def span: Span

The span of the timeline to bounce.

The span of the timeline to bounce.

Inherited from
ConfigLike