de.sciss.synth

Buffer

final case class Buffer(server: Server, id: Int) extends ModelImpl[BufferInfo] with Product with Serializable

Linear Supertypes
Serializable, Serializable, Product, Equals, ModelImpl[BufferInfo], Model[BufferInfo], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Buffer
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. ModelImpl
  7. Model
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Buffer(server: Server, id: Int)

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def addListener(pf: model.Model.Listener[BufferInfo]): pf.type

    Definition Classes
    ModelImpl → Model
  7. def allocMsg(numFrames: Int, numChannels: Int = 1, completion: Optional[Packet] = None): BufferAlloc

  8. def allocReadChannelMsg(path: String, startFrame: Int = 0, numFrames: Int = 1, channels: Seq[Int], completion: Optional[Packet] = None): BufferAllocReadChannel

  9. def allocReadMsg(path: String, startFrame: Int = 0, numFrames: Int = 1, completion: Optional[Packet] = None): BufferAllocRead

  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  12. def closeMsg(completion: Optional[Packet] = None): BufferClose

  13. def closeMsg: BufferClose

  14. def cueMsg(path: String, startFrame: Int = 0, completion: Optional[Packet] = None): BufferRead

  15. final def dispatch(update: BufferInfo): Unit

    Attributes
    protected
    Definition Classes
    ModelImpl
  16. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. def fillMsg(ranges: FillRange*): BufferFill

  18. def fillMsg(value: Float): BufferFill

  19. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  20. def freeMsg(completion: Optional[Packet] = None, release: Boolean = true): BufferFree

    release

    whether the buffer id should be immediately returned to the id-allocator or not. if you build a system that monitors when bundles are really sent to the server, and you need to deal with transaction abortion, you might want to pass in false here, and manually release the id, using the release method

  21. def freeMsg: BufferFree

  22. def genMsg(command: Command): BufferGen

  23. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  24. def getMsg(indices: Int*): BufferGet

  25. def getnMsg(ranges: Range*): BufferGetn

  26. val id: Int

  27. final def isInstanceOf[T0]: Boolean

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

    Definition Classes
    AnyRef
  29. final def notify(): Unit

    Definition Classes
    AnyRef
  30. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  31. def numChannels: Int

    The number of channels allocated for this buffer, or -1 if the buffer was not allocated or its number of channels is not yet known.

  32. def numFrames: Int

    The number of frames allocated for this buffer, or -1 if the buffer was not allocated or its number of frames is not yet known.

  33. def queryMsg: BufferQuery

  34. def readChannelMsg(path: String, fileStartFrame: Int = 0, numFrames: Int = 1, bufStartFrame: Int = 0, leaveOpen: Boolean = false, channels: Seq[Int], completion: Optional[Packet] = None): BufferReadChannel

  35. def readMsg(path: String, fileStartFrame: Int = 0, numFrames: Int = 1, bufStartFrame: Int = 0, leaveOpen: Boolean = false, completion: Optional[Packet] = None): BufferRead

  36. def register(): Unit

    Adds this buffer to the server's buffer manager so that its information fields will be tracked and updated.

    Adds this buffer to the server's buffer manager so that its information fields will be tracked and updated.

    It is safe to call this method more than once.

  37. def release(): Unit

    Releases the buffer id to the id-allocator pool, without sending any OSC message.

    Releases the buffer id to the id-allocator pool, without sending any OSC message. Use with great care.

  38. def releaseListeners(): Unit

    Attributes
    protected
    Definition Classes
    ModelImpl
  39. def removeListener(pf: model.Model.Listener[BufferInfo]): Unit

    Definition Classes
    ModelImpl → Model
  40. def sampleRate: Float

    The sample-rate for this buffer, or 0 if the buffer was not allocated or its sample-rate is not yet known.

  41. val server: Server

  42. def setMsg(pairs: FillValue*): BufferSet

  43. def setnMsg(pairs: (Int, IndexedSeq[Float])*): BufferSetn

  44. def setnMsg(values: IndexedSeq[Float]): BufferSetn

  45. def startListening(): Unit

    Attributes
    protected
    Definition Classes
    ModelImpl
  46. def stopListening(): Unit

    Attributes
    protected
    Definition Classes
    ModelImpl
  47. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  48. def toString(): String

    Definition Classes
    Buffer → AnyRef → Any
  49. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  52. def writeMsg(path: String, fileType: AudioFileType = io.AudioFileType.AIFF, sampleFormat: SampleFormat = io.SampleFormat.Float, numFrames: Int = 1, startFrame: Int = 0, leaveOpen: Boolean = false, completion: Optional[Packet] = None): BufferWrite

  53. def zeroMsg(completion: Optional[Packet]): BufferZero

  54. def zeroMsg: BufferZero

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from ModelImpl[BufferInfo]

Inherited from Model[BufferInfo]

Inherited from AnyRef

Inherited from Any

Ungrouped