BufferPrepare

trait BufferPrepare[T <: Txn[T]] extends AsyncResource[T]
Companion
object
trait AsyncResource[T]
trait Disposable[T]
trait Future[Any]
trait Awaitable[Any]
class Object
trait Matchable
class Any

Value members

Abstract methods

Inherited methods

def andThen[U](pf: PartialFunction[Try[Any], U])(implicit executor: ExecutionContext): Future[Any]
Inherited from
Future
def collect[S](pf: PartialFunction[Any, S])(implicit executor: ExecutionContext): Future[S]
Inherited from
Future
def dispose()(implicit tx: T): Unit
Inherited from
Disposable
def failed: Future[Throwable]
Inherited from
Future
def fallbackTo[U >: Any](that: Future[U]): Future[U]
Inherited from
Future
def filter(p: Any => Boolean)(implicit executor: ExecutionContext): Future[Any]
Inherited from
Future
def flatMap[S](f: Any => Future[S])(implicit executor: ExecutionContext): Future[S]
Inherited from
Future
def flatten[S](implicit ev: Any <:< Future[S]): Future[S]
Inherited from
Future
def foreach[U](f: Any => U)(implicit executor: ExecutionContext): Unit
Inherited from
Future
def install(b: AuralNode[T])(implicit tx: T): Unit
Inherited from
AsyncResource
def isCompleted: Boolean
Inherited from
Future
def map[S](f: Any => S)(implicit executor: ExecutionContext): Future[S]
Inherited from
Future
def mapTo[S](implicit tag: ClassTag[S]): Future[S]
Inherited from
Future
def onComplete[U](f: Try[Any] => U)(implicit executor: ExecutionContext): Unit
Inherited from
Future
@throws(classOf[InterruptedException]) @throws(classOf[scala.concurrent.TimeoutException])
def ready(atMost: Duration)(implicit permit: CanAwait): BufferPrepare[T]
Inherited from
Awaitable
def recover[U >: Any](pf: PartialFunction[Throwable, U])(implicit executor: ExecutionContext): Future[U]
Inherited from
Future
def recoverWith[U >: Any](pf: PartialFunction[Throwable, Future[U]])(implicit executor: ExecutionContext): Future[U]
Inherited from
Future
@throws(classOf[InterruptedException]) @throws(classOf[scala.concurrent.TimeoutException])
def result(atMost: Duration)(implicit permit: CanAwait): Any
Inherited from
Awaitable
def transform[S](f: Try[Any] => Try[S])(implicit executor: ExecutionContext): Future[S]
Inherited from
Future
def transform[S](s: Any => S, f: Throwable => Throwable)(implicit executor: ExecutionContext): Future[S]
Inherited from
Future
def transformWith[S](f: Try[Any] => Future[S])(implicit executor: ExecutionContext): Future[S]
Inherited from
Future
def value: Option[Try[Any]]
Inherited from
Future
final
def withFilter(p: Any => Boolean)(implicit executor: ExecutionContext): Future[Any]
Inherited from
Future
def zip[U](that: Future[U]): Future[(Any, U)]
Inherited from
Future
def zipWith[U, R](that: Future[U])(f: (Any, U) => R)(implicit executor: ExecutionContext): Future[R]
Inherited from
Future