trait
OnceSelectorBuilder[T] extends SelectorBuilder[T]
Abstract Value Members
-
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: Any): Boolean
-
macro
def
apply(f: PartialFunction[Any, T]): Future[T]
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
implicit
def
ec: ExecutionContext
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
finalize(): Unit
-
macro
def
foreach(f: (Any) ⇒ T): T
-
def
futureInput[A](f: Future[A]): FutureInput[A]
-
final
def
getClass(): Class[_]
-
def
go: Future[T @scala.annotation.unchecked.uncheckedVariance]
-
def
hashCode(): Int
-
-
def
idleWithFlowTerminationAsync(f: (ExecutionContext, FlowTermination[T]) ⇒ Future[T]): OnceSelectorBuilder.this.type
-
final
def
isInstanceOf[T0]: Boolean
-
final
def
ne(arg0: AnyRef): Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
-
def
onRead[E](ch: Input[E])(arg: ReadSelectorArgument[E, T @scala.annotation.unchecked.uncheckedVariance]): OnceSelectorBuilder.this.type
-
def
onWrite[E](ch: Output[E])(arg: WriteSelectorArgument[E, T @scala.annotation.unchecked.uncheckedVariance]): OnceSelectorBuilder.this.type
-
-
def
readingWithFlowTerminationAsync[A](ch: Input[A], f: (ExecutionContext, FlowTermination[T], A) ⇒ Future[T]): OnceSelectorBuilder[T]
-
def
selectorRun: Future[T @scala.annotation.unchecked.uncheckedVariance]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
-
def
withIdle(f: (Skip[T @scala.annotation.unchecked.uncheckedVariance]) ⇒ Option[Future[Continuated[T @scala.annotation.unchecked.uncheckedVariance]]]): OnceSelectorBuilder.this.type
-
def
withReader[B](ch: Input[B], f: (ContRead[B, T @scala.annotation.unchecked.uncheckedVariance]) ⇒ Option[(In[B]) ⇒ Future[Continuated[T @scala.annotation.unchecked.uncheckedVariance]]]): OnceSelectorBuilder.this.type
-
def
withWriter[B](ch: Output[B], f: (ContWrite[B, T @scala.annotation.unchecked.uncheckedVariance]) ⇒ Option[(B, Future[Continuated[T @scala.annotation.unchecked.uncheckedVariance]])]): OnceSelectorBuilder.this.type
-
macro
def
writing[A](ch: Output[A], x: A)(f: (A) ⇒ T): OnceSelectorBuilder[T]
-
def
writingWithFlowTerminationAsync[A](ch: Output[A], x: ⇒ A, f: (ExecutionContext, FlowTermination[T], A) ⇒ Future[T]): OnceSelectorBuilder.this.type
Inherited from SelectorBuilder[T @scala.annotation.unchecked.uncheckedVariance]
Inherited from AnyRef
Inherited from Any
Builder for 'once' selector. Can be obtained as
gopherApi.select.once
.