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
- 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
- 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
- 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]
- 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]
- 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]