Object/Trait

de.sciss.synth

Server

Related Docs: trait Server | package synth

Permalink

object Server

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Server
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. sealed trait Condition extends Update

    Permalink
  2. final class Config extends ConfigLike

    Permalink

  3. final class ConfigBuilder extends ConfigLike

    Permalink

  4. trait ConfigLike extends AnyRef

    Permalink

    The base trait for Config and ConfigBuilder describes the settings used to boot scsynth in realtime or non-realtime mode, as well as its server address and port.

    The base trait for Config and ConfigBuilder describes the settings used to boot scsynth in realtime or non-realtime mode, as well as its server address and port.

    You obtain a ConfigBuilder by calling Server.Config(). This builder can then be mutated and will be implicitly converted to an immutable Config when required.

    See ConfigBuilder for its default values.

    See also

    de.sciss.synth.Server.Config

    de.sciss.synth.Server.ConfigBuilder

  5. final case class Counts(c: StatusReply) extends Update with Product with Serializable

    Permalink
  6. type Listener = PartialFunction[Update, Unit]

    Permalink
  7. sealed trait Update extends AnyRef

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object Config

    Permalink
  5. object ConfigBuilder

    Permalink
  6. object Offline extends Condition with Product with Serializable

    Permalink
  7. object Running extends Condition with Product with Serializable

    Permalink
  8. def allocPort(transport: Transport): Int

    Permalink
  9. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  10. def boot(name: String = "localhost", config: Config = Config().build, clientConfig: Client.Config = Client.Config().build)(listener: ServerConnection.Listener = PartialFunction.empty): ServerConnection

    Permalink
  11. def boot: ServerConnection

    Permalink
  12. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  13. def connect(name: String = "localhost", config: Config = Config().build, clientConfig: Client.Config = Client.Config().build)(listener: ServerConnection.Listener = PartialFunction.empty): ServerConnection

    Permalink
  14. def connect: ServerConnection

    Permalink
  15. def default: Server

    Permalink
  16. implicit def defaultGroup(s: Server): Group

    Permalink
  17. def defaultProgram: String

    Permalink

    The default file path to scsynth.

    The default file path to scsynth. If the runtime (system) property "SC_HOME" is provided, this specifies the directory of scsynth. Otherwise, an environment (shell) variable named "SC_HOME" is checked. If neither exists, this returns scsynth in the current working directory.

  18. def dummy(name: String = "dummy", config: Config = Config().build, clientConfig: Client.Config = Client.Config().build): Server

    Permalink

    Creates an unconnected server proxy.

    Creates an unconnected server proxy. This may be useful for creating NRT command files. Any attempt to try to send messages to the server will fail.

  19. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  20. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  21. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  22. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  23. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  24. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  25. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  26. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  28. def printError(name: String, t: Throwable): Unit

    Permalink
  29. def renderNRT(dur: Double, config: Config): Processor[Int] with Prepared

    Permalink

    Starts an NRT rendering process based on the NRT parameters of the configuration argument.

    Starts an NRT rendering process based on the NRT parameters of the configuration argument.

    Note: The returned process must be explicitly started by calling start()

    dur

    the duration of the bounce, used to emit process updates

    config

    the server configuration in which nrtCommandPath must be set

    returns

    the process whose return value is the process exit code of scsynth (0 indicating success)

  30. def run(config: Config = Config().build)(code: (Server) ⇒ Unit): Unit

    Permalink

    Utility method to test code quickly with a running server.

    Utility method to test code quickly with a running server. This boots a server and executes the passed in code when the server is up. A shutdown hook is registered to make sure the server is destroyed when the VM exits.

  31. def run(code: (Server) ⇒ Unit): Unit

    Permalink
  32. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  33. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  34. def version(config: Config = Config().build): Try[(String, String)]

    Permalink
  35. def version: Try[(String, String)]

    Permalink
  36. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped