de.sciss.processor.impl

ProcessWrapper

class ProcessWrapper extends ProcessorImpl[Int, Processor[Int]] with Processor[Int]

Linear Supertypes
Processor[Int], ProcessorImpl[Int, Processor[Int]], FutureProxy[Int], ModelImpl[Update[Int, Processor[Int]]], Body, Prepared, ProcessorLike[Int, Processor[Int]], Model[Update[Int, Processor[Int]]], Future[Int], Awaitable[Int], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ProcessWrapper
  2. Processor
  3. ProcessorImpl
  4. FutureProxy
  5. ModelImpl
  6. Body
  7. Prepared
  8. ProcessorLike
  9. Model
  10. Future
  11. Awaitable
  12. AnyRef
  13. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ProcessWrapper(name: String, process: Process)

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. final def abort(): Unit

    Asynchronously aborts the process.

    Asynchronously aborts the process. This method returns immediately. Once the process is aborted, it will dispatch an Aborted event. This method may be called repeatedly, although calling it twice does not have any particular effect.

    Definition Classes
    ProcessorImplProcessorLike
  7. final def aborted: Boolean

    Returns true if the abort method had been called.

    Returns true if the abort method had been called.

    Definition Classes
    ProcessorImplBody
  8. def addListener(pf: model.Model.Listener[Update[Int, Processor[Int]]]): pf.type

    Definition Classes
    ModelImpl → Model
  9. def andThen[U](pf: PartialFunction[Try[Int], U])(implicit executor: ExecutionContext): Future[Int]

    Definition Classes
    Future
  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. final def await[B](that: ProcessorLike[B, Any], offset: Double = 0, weight: Double = 1): B

    Attributes
    protected
    Definition Classes
    ProcessorImpl
  12. def body(): Int

    The main processing body.

    The main processing body.

    Attributes
    protected
    Definition Classes
    ProcessWrapperProcessorImpl
  13. final def checkAborted(): Unit

    Checks if the process was aborted.

    Checks if the process was aborted. If so, throws an Aborted exception. The main body should _not_ try to catch this exception, which will be handled by the underlying infrastructure. However, the main body should put resource operations in proper try ... finally blocks, so that these resources are freed when Abort exception is thrown. Alternatively, the cleanUp method can be overridden to perform such tasks.

    Definition Classes
    ProcessorImplBody
  14. def cleanUp(): Unit

    Subclasses may override this to perform further cleanup when the process is aborted.

    Subclasses may override this to perform further cleanup when the process is aborted.

    Attributes
    protected
    Definition Classes
    ProcessorImpl
  15. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  16. def collect[S](pf: PartialFunction[Int, S])(implicit executor: ExecutionContext): Future[S]

    Definition Classes
    Future
  17. final def dispatch(update: Update[Int, Processor[Int]]): Unit

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

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

    Definition Classes
    AnyRef → Any
  20. implicit final def executionContext: ExecutionContext

    Keeps a record of the execution context used for starting this processor.

    Keeps a record of the execution context used for starting this processor. You may use this to start intermediate sub processes. This method may only be used in the body method.

    Attributes
    protected
    Definition Classes
    ProcessorImpl
  21. def failed: Future[Throwable]

    Definition Classes
    Future
  22. def fallbackTo[U >: Int](that: Future[U]): Future[U]

    Definition Classes
    Future
  23. def filter(pred: (Int) ⇒ Boolean)(implicit executor: ExecutionContext): Future[Int]

    Definition Classes
    Future
  24. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  25. def flatMap[S](f: (Int) ⇒ Future[S])(implicit executor: ExecutionContext): Future[S]

    Definition Classes
    Future
  26. def foreach[U](f: (Int) ⇒ U)(implicit executor: ExecutionContext): Unit

    Definition Classes
    Future
  27. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  29. def isCompleted: Boolean

    Definition Classes
    FutureProxy → Future
  30. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  31. def map[S](f: (Int) ⇒ S)(implicit executor: ExecutionContext): Future[S]

    Definition Classes
    Future
  32. def mapTo[S](implicit tag: ClassTag[S]): Future[S]

    Definition Classes
    Future
  33. final def ne(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef
  35. def notifyAborted(): Unit

    Subclasses may override this to be informed immediately.

    Subclasses may override this to be informed immediately. about an abort request. Otherwise they can pull the aborted status any time by invoking checkAborted().

    Attributes
    protected
    Definition Classes
    ProcessWrapperProcessorImpl
  36. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  37. def onComplete[U](func: (Try[Int]) ⇒ U)(implicit executor: ExecutionContext): Unit

    Definition Classes
    FutureProxy → Future
  38. def onFailure[U](callback: PartialFunction[Throwable, U])(implicit executor: ExecutionContext): Unit

    Definition Classes
    Future
  39. def onSuccess[U](pf: PartialFunction[Int, U])(implicit executor: ExecutionContext): Unit

    Definition Classes
    Future
  40. final def peerFuture: Future[Int]

    Attributes
    protected
    Definition Classes
    ProcessorImplFutureProxy
  41. final def progress: Double

    Queries the correct progress which is value between 0.

    Queries the correct progress which is value between 0.0 and 1.0

    Definition Classes
    ProcessorImplBodyProcessorLike
  42. val progressResolution: Int

    The resolution at which progress reports are dispatched.

    The resolution at which progress reports are dispatched. The default of 100 means that a Processor.Progress message is only dispatched if the progress has advanced by at least 1 percent. Higher values give finer granularity (sub classes may override this value).

    Attributes
    protected
    Definition Classes
    ProcessorImpl
  43. final def progress_=(f: Double): Unit

    Invoke this to signalize progress

    Invoke this to signalize progress

    f

    the processor's progress in percent (0 to 1). Values outside the 0 to 1 range will be clipped.

    Definition Classes
    ProcessorImplBody
  44. def ready(atMost: Duration)(implicit permit: CanAwait): ProcessWrapper.this.type

    Definition Classes
    FutureProxy → Awaitable
  45. def recover[U >: Int](pf: PartialFunction[Throwable, U])(implicit executor: ExecutionContext): Future[U]

    Definition Classes
    Future
  46. def recoverWith[U >: Int](pf: PartialFunction[Throwable, Future[U]])(implicit executor: ExecutionContext): Future[U]

    Definition Classes
    Future
  47. def releaseListeners(): Unit

    Attributes
    protected
    Definition Classes
    ModelImpl
  48. def removeListener(pf: model.Model.Listener[Update[Int, Processor[Int]]]): Unit

    Definition Classes
    ModelImpl → Model
  49. def result(atMost: Duration)(implicit permit: CanAwait): Int

    Definition Classes
    FutureProxy → Awaitable
  50. final def start()(implicit executionContext: ExecutionContext): Unit

    Definition Classes
    ProcessorImplPrepared
  51. def startListening(): Unit

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

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

    Definition Classes
    AnyRef
  54. def toString(): String

    Definition Classes
    ProcessWrapper → AnyRef → Any
  55. def transform[S](s: (Int) ⇒ S, f: (Throwable) ⇒ Throwable)(implicit executor: ExecutionContext): Future[S]

    Definition Classes
    Future
  56. def value: Option[Try[Int]]

    Definition Classes
    FutureProxy → Future
  57. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  60. final def withFilter(p: (Int) ⇒ Boolean)(implicit executor: ExecutionContext): Future[Int]

    Definition Classes
    Future
  61. def zip[U](that: Future[U]): Future[(Int, U)]

    Definition Classes
    Future

Inherited from Processor[Int]

Inherited from ProcessorImpl[Int, Processor[Int]]

Inherited from FutureProxy[Int]

Inherited from ModelImpl[Update[Int, Processor[Int]]]

Inherited from Body

Inherited from Prepared

Inherited from ProcessorLike[Int, Processor[Int]]

Inherited from Model[Update[Int, Processor[Int]]]

Inherited from Future[Int]

Inherited from Awaitable[Int]

Inherited from AnyRef

Inherited from Any

Ungrouped