Object/Trait

repos

Action

Related Docs: trait Action | package repos

Permalink

object Action

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Action
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. case class ActionSeq[A](actions: Seq[Action[NoStream, A]]) extends Action[NoStream, Seq[A]] with Product with Serializable

    Permalink
  2. sealed trait AggregationFunction extends AnyRef

    Permalink
  3. case class AndThenAction[+S <: NoStream, B](indexedSeq: IndexedSeq[Action[NoStream, Any]]) extends Action[S, B] with Product with Serializable

    Permalink
  4. case class CreateAction[Id, M](repo: Repo[Id, M]) extends RepoAction[NoStream, Id, M, Unit] with Product with Serializable

    Permalink
  5. case class DeleteAction[Id, M](repo: Repo[Id, M], ids: Set[Id]) extends RepoAction[NoStream, Id, M, Unit] with Product with Serializable

    Permalink
  6. case class FlatMapAction[+S <: NoStream, A, +B](source: Action[NoStream, A], f: (A) ⇒ Action[S, B]) extends Action[S, B] with Product with Serializable

    Permalink
  7. case class GetAction[Id, M](repo: Repo[Id, M], id: Id) extends RepoAction[NoStream, Id, M, M] with Product with Serializable

    Permalink
  8. case class GetAllLatestEntriesAction[Id, M](repo: Repo[Id, M]) extends RepoAction[Streaming[(Id, M)], Id, M, Seq[(Id, M)]] with Product with Serializable

    Permalink
  9. case class GetEntriesAction[Id, M](repo: Repo[Id, M], fromPk: Long, idsConstraint: Option[Seq[Id]], excludePks: Set[Long], afterTimeMsec: Option[Long]) extends RepoAction[Streaming[EntryTableRecord[Id, M]], Id, M, Seq[EntryTableRecord[Id, M]]] with Product with Serializable

    Permalink
  10. case class GetLastEntry[Id, M](repo: Repo[Id, M]) extends RepoAction[NoStream, Id, M, Option[EntryTableRecord[Id, M]]] with Product with Serializable

    Permalink
  11. trait IndexAction[Id, M, R, A] extends RepoAction[NoStream, Id, M, A]

    Permalink
  12. case class IndexAggegrationAction[Id, M, R](index: SecondaryIndex[Id, M, R], agg: AggregationFunction) extends IndexAction[Id, M, R, Option[R]] with Product with Serializable

    Permalink
  13. case class IndexCountAction[Id, M, R](index: SecondaryIndex[Id, M, R], criteria: LookupCriteria[R]) extends IndexAction[Id, M, R, Int] with Product with Serializable

    Permalink
  14. case class IndexGetAllAction[Id, M, R](index: SecondaryIndex[Id, M, R], criteria: LookupCriteria[R], offset: Option[Int] = None, count: Option[Int] = None) extends IndexStreamingAction[Id, M, R, Seq[(Id, M)]] with Product with Serializable

    Permalink
  15. trait IndexStreamingAction[Id, M, R, A] extends RepoAction[Streaming[(Id, M)], Id, M, A]

    Permalink
  16. case class InsertAction[Id, M](repo: Repo[Id, M], entries: Seq[(Id, M)]) extends RepoAction[NoStream, Id, M, Unit] with Product with Serializable

    Permalink
  17. case class MappedAction[S <: NoStream, A, B](source: Action[S, A], f: (A) ⇒ B) extends Action[NoStream, B] with Product with Serializable

    Permalink
  18. case class MultiGetAction[Id, M](repo: Repo[Id, M], ids: Iterable[Id]) extends RepoAction[NoStream, Id, M, Map[Id, M]] with Product with Serializable

    Permalink
  19. trait RepoAction[+S <: NoStream, Id, M, A] extends Action[S, A]

    Permalink
  20. class RepoException extends Exception

    Permalink
  21. implicit final class StreamAction[K, A] extends AnyVal

    Permalink
  22. case class Tuple2Action[+S <: NoStream, A, B](a: Action[S, A], b: Action[S, B]) extends Action[NoStream, (A, B)] with Product with Serializable

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object Max extends AggregationFunction with Product with Serializable

    Permalink
  5. object Min extends AggregationFunction with Product with Serializable

    Permalink
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. def seq[S <: NoStream, A](actions: Seq[Action[S, A]]): Action[NoStream, Seq[A]]

    Permalink
  18. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  19. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  20. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped