Packages

sealed trait PostResponse[W, ID] extends AnyRef

Response to a post, generating one or more posts or just a callback; this exists mainly for nicer type collections.

Linear Supertypes
AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PostResponse
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. abstract type PostType

Abstract Value Members

  1. abstract def post(web: W, content: PostType, id: ID): Future[Vector[PostData[_, W, ID]]]

Concrete Value Members

  1. def respond(web: W)(pds: Vector[PostData[PostType, W, ID]]): Future[Vector[PostData[_, W, ID]]]