package site

Type Members

  1. case class ControlMessage (control: ControlMessageInfo) extends SiteStreamingMessage with Product with Serializable

    New Site Streams connections will receive a control message which may be used to modify the Site Streams connection without reconnecting.

    New Site Streams connections will receive a control message which may be used to modify the Site Streams connection without reconnecting. See Control Streams for Site Streams for details. Note that this message will not necessarily be the first message delivered on a Site Streams connection. For more information see https://dev.twitter.com/streaming/overview/messages-types#control_messages_control

  2. case class ControlMessageInfo (control_uri: String) extends Product with Serializable
  3. abstract class UserEnvelop [T <: StreamingMessage] extends SiteStreamingMessage

    Site Streams are sent the same messages as User Streams (including friends lists in the preamble), but for multiple users instead of a single user.The same types of messages are streamed, but to identify the target of each message, an additional wrapper is placed around every message, except for blank keep-alive lines.

    Site Streams are sent the same messages as User Streams (including friends lists in the preamble), but for multiple users instead of a single user.The same types of messages are streamed, but to identify the target of each message, an additional wrapper is placed around every message, except for blank keep-alive lines. For more information see https://dev.twitter.com/streaming/overview/messages-types#envelopes_for_user

  4. case class UserEnvelopDirectMessage (for_user: Long, message: DirectMessage) extends UserEnvelop[DirectMessage] with Product with Serializable
  5. case class UserEnvelopDirectMessageStringified (for_user: String, message: DirectMessage) extends UserEnvelopStringified[DirectMessage] with Product with Serializable
  6. case class UserEnvelopFriendsLists (for_user: Long, message: FriendsLists) extends UserEnvelop[FriendsLists] with Product with Serializable
  7. case class UserEnvelopFriendsListsStringified (for_user: String, message: FriendsLists) extends UserEnvelopStringified[FriendsLists] with Product with Serializable
  8. case class UserEnvelopSimpleEvent (for_user: Long, message: SimpleEvent) extends UserEnvelop[SimpleEvent] with Product with Serializable
  9. case class UserEnvelopSimpleEventStringified (for_user: String, message: SimpleEvent) extends UserEnvelopStringified[SimpleEvent] with Product with Serializable
  10. abstract class UserEnvelopStringified [T <: StreamingMessage] extends SiteStreamingMessage

    Site Streams are sent the same messages as User Streams (including friends lists in the preamble), but for multiple users instead of a single user.The same types of messages are streamed, but to identify the target of each message, an additional wrapper is placed around every message, except for blank keep-alive lines.

    Site Streams are sent the same messages as User Streams (including friends lists in the preamble), but for multiple users instead of a single user.The same types of messages are streamed, but to identify the target of each message, an additional wrapper is placed around every message, except for blank keep-alive lines. For more information see https://dev.twitter.com/streaming/overview/messages-types#envelopes_for_user

  11. case class UserEnvelopTweet (for_user: Long, message: Tweet) extends UserEnvelop[Tweet] with Product with Serializable
  12. case class UserEnvelopTweetEvent (for_user: Long, message: TweetEvent) extends UserEnvelop[TweetEvent] with Product with Serializable
  13. case class UserEnvelopTweetEventStringified (for_user: String, message: TweetEvent) extends UserEnvelopStringified[TweetEvent] with Product with Serializable
  14. case class UserEnvelopTweetStringified (for_user: String, message: Tweet) extends UserEnvelopStringified[Tweet] with Product with Serializable
  15. case class UserEnvelopTwitterListEvent (for_user: Long, message: TwitterListEvent) extends UserEnvelop[TwitterListEvent] with Product with Serializable
  16. case class UserEnvelopTwitterListEventStringified (for_user: String, message: TwitterListEvent) extends UserEnvelopStringified[TwitterListEvent] with Product with Serializable
  17. case class UserEnvelopWarningMessage (for_user: Long, message: WarningMessage) extends UserEnvelop[WarningMessage] with Product with Serializable
  18. case class UserEnvelopWarningMessageStringified (for_user: String, message: WarningMessage) extends UserEnvelopStringified[WarningMessage] with Product with Serializable

Ungrouped