object Postable
- Alphabetic
- By Inheritance
- Postable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- case class Impl[P, W, ID](postFunc: (P, W, Set[ID]) => Future[ID])(implicit tag: scala.reflect.api.JavaUniverse.TypeTag[P]) extends Postable[P, W, ID] with Product with Serializable
A concrete implementation of postable
A concrete implementation of postable
- postFunc
the posting function
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def apply[P, W, ID](postFunc: (P, W, Set[ID]) => Future[ID])(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[P]): Postable[P, W, ID]
Making a postable
Making a postable
- postFunc
the posting function
- returns
a Postable
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- implicit def bufferPostable[P, ID, W <: PostBuffer[P, ID]](implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[P]): Postable[P, W, ID]
post in a buffer
post in a buffer
- returns
postability
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- implicit val ec: ExecutionContext
- implicit def eitherPostable[P, Q, W, ID](implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[P], arg1: scala.reflect.api.JavaUniverse.TypeTag[Q], pw: Postable[P, W, ID], qw: Postable[Q, W, ID]): Postable[Either[P, Q], W, ID]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- implicit def optionPostable[P, W, ID](implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[P], pw: Postable[P, W, ID], uw: Postable[Unit, W, ID]): Postable[Option[P], W, ID]
post an Option[P], posting a Unit in case of
None
post an Option[P], posting a Unit in case of
None
- pw
postability of
P
- uw
postability of a Unit
- returns
postability of
Option[P]
- implicit def pairPost[P, Q <: HList, W, ID](implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[P], arg1: scala.reflect.api.JavaUniverse.TypeTag[Q], pw: Postable[P, W, ID], qw: Postable[Q, W, ID]): Postable[::[P, Q], W, ID]
- def post[P, W, ID](content: P, web: W, pred: Set[ID])(implicit pw: Postable[P, W, ID], dg: DataGetter[P, W, ID]): Future[PostData[_, W, ID]]
post and return post data
post and return post data
- content
content to be posted
- web
web where we post
- pred
predecessors of the post
- pw
postability of the type
- returns
PostData as a future
- implicit def rightPost[X, P, W, ID](implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[X], arg1: scala.reflect.api.JavaUniverse.TypeTag[P], pw: Postable[P, W, ID], uw: Postable[Unit, W, ID]): Postable[Right[X, P], W, ID]
Post a
Right[P]
, to be used to split the stream with a change or not.Post a
Right[P]
, to be used to split the stream with a change or not.- pw
postability of
P
- uw
postability of
Unit
- returns
Postability of
Right[P]
- implicit def setPostable[P, W, ID](implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[P], pw: Postable[P, W, ID], uw: Postable[Unit, W, ID]): Postable[Set[P], W, ID]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- implicit def tryPostable[P, W, ID](implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[P], pw: Postable[P, W, ID], ew: Postable[Throwable, W, ID]): Postable[Try[P], W, ID]
post a
Try[P]
by postingP
or an errorpost a
Try[P]
by postingP
or an error- pw
postability of
P
- ew
postability of a
Throwable
- returns
postability of
Try[P]
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated