Packages

package user

Type Members

  1. abstract class Event [T] extends UserStreamingMessage

    Notifications about non-Tweet events are also sent over a user stream.

    Notifications about non-Tweet events are also sent over a user stream. The values present will be different based on the type of event. For more information see https://dev.twitter.com/streaming/overview/messages-types#Events_event.

  2. case class FriendsLists (friends: Seq[Long]) extends UserStreamingMessage with Product with Serializable

    Upon establishing a User Stream connection, Twitter will send a preamble before starting regular message delivery.

    Upon establishing a User Stream connection, Twitter will send a preamble before starting regular message delivery. This preamble contains a list of the user’s friends. This is represented as an array of user ids as longs. For more information see https://dev.twitter.com/streaming/overview/messages-types#friends_list_friends

  3. case class FriendsListsStringified (friends: Seq[String]) extends UserStreamingMessage with Product with Serializable

    Upon establishing a User Stream connection, Twitter will send a preamble before starting regular message delivery.

    Upon establishing a User Stream connection, Twitter will send a preamble before starting regular message delivery. This preamble contains a list of the user’s friends. This is represented as an array of user ids as strings. For more information see https://dev.twitter.com/streaming/overview/messages-types#friends_list_friends

  4. case class SimpleEvent (created_at: Date, event: SimpleEventCode, target: User, source: User, target_object: Option[String]) extends Event[String] with Product with Serializable
  5. case class TweetEvent (created_at: Date, event: TweetEventCode, target: User, source: User, target_object: Tweet) extends Event[Tweet] with Product with Serializable
  6. case class TwitterListEvent (created_at: Date, event: TwitterListEventCode, target: User, source: User, target_object: TwitterList) extends Event[TwitterList] with Product with Serializable

Ungrouped