services.mongodb

MongoDBEventService

class MongoDBEventService extends EventService

Use MongoDB for storing events.

Linear Supertypes
EventService, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. MongoDBEventService
  2. EventService
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new MongoDBEventService()

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def addEvent(event: Event): Unit

    Adds a general event

    Adds a general event

    Definition Classes
    MongoDBEventServiceEventService
  7. def addObjectEvent(user: Option[User], object_id: UUID, object_name: String, action_type: String): Unit

    Event where user interacts with one object

    Event where user interacts with one object

    Definition Classes
    MongoDBEventServiceEventService
  8. def addRequestEvent(user: Option[User], targetuser: User, object_id: UUID, object_name: String, action_type: String): Unit

    Event where 2 user interacts with 1 object, etc request event

    Event where 2 user interacts with 1 object, etc request event

    Definition Classes
    MongoDBEventServiceEventService
  9. def addSourceEvent(user: Option[User], object_id: UUID, object_name: String, source_id: UUID, source_name: String, action_type: String): Unit

    Event where the user interacts with 2 objects, etc moving a dataset to a collection

    Event where the user interacts with 2 objects, etc moving a dataset to a collection

    Definition Classes
    MongoDBEventServiceEventService
  10. def addUserEvent(user: Option[User], action_type: String): Unit

    Event where only the user is involved

    Event where only the user is involved

    Definition Classes
    MongoDBEventServiceEventService
  11. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  12. def clone(): AnyRef

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

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

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

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

    Definition Classes
    AnyRef → Any
  17. def getEvents(id: String, id_type: String, limit: Option[Integer]): SalatMongoCursor[Event]

    Gets all events for one UUID

    Gets all events for one UUID

    Definition Classes
    MongoDBEventServiceEventService
  18. def getEvents(followedEntities: List[TypedID], limit: Option[Integer]): List[Event]

    Gets limit number of events from users, collections, datasets, and files and compliles them into 1 list

    Gets limit number of events from users, collections, datasets, and files and compliles them into 1 list

    Definition Classes
    MongoDBEventServiceEventService
  19. def getEventsByTime(followedEntities: List[TypedID], time: Date, limit: Option[Integer]): List[Event]

    Get limit number of events which come after a specificied time

    Get limit number of events which come after a specificied time

    Definition Classes
    MongoDBEventServiceEventService
  20. def getEventsByUser(user: User, limit: Option[Integer]): List[Event]

    Get the events by creator

    Get the events by creator

    Definition Classes
    MongoDBEventServiceEventService
  21. def getEventsOfType(following: List[UUID], id_type: String, limit: Option[Integer]): List[Event]

    Gets all users for a specific list and specific type: object or source

    Gets all users for a specific list and specific type: object or source

    Definition Classes
    MongoDBEventServiceEventService
  22. def getLatestNEventsOfType(n: Int, event_type: Option[String]): List[Event]

    Get the latest N events

    Get the latest N events

    Definition Classes
    MongoDBEventServiceEventService
  23. def getRequestEvents(targetuser: Option[User], limit: Option[Integer]): List[Event]

    Get the request event and loginuser is targetuser

    Get the request event and loginuser is targetuser

    Definition Classes
    MongoDBEventServiceEventService
  24. def hashCode(): Int

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

    Definition Classes
    Any
  26. def listEvents(): List[Event]

    Lists all the events

    Lists all the events

    Definition Classes
    MongoDBEventServiceEventService
  27. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  28. final def notify(): Unit

    Definition Classes
    AnyRef
  29. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  30. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  31. def toString(): String

    Definition Classes
    AnyRef → Any
  32. def updateAuthorFullName(userId: UUID, fullName: String): Unit

    Update user fullname

    Update user fullname

    Definition Classes
    MongoDBEventServiceEventService
  33. def updateObjectName(id: UUID, name: String): Unit

    Update the object name

    Update the object name

    Definition Classes
    MongoDBEventServiceEventService
  34. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from EventService

Inherited from AnyRef

Inherited from Any

Ungrouped