package site

Type Members

  1. final 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://developer.twitter.com/en/docs/tweets/filter-realtime/guides/streaming-message-types

  2. final 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://developer.twitter.com/en/docs/tweets/filter-realtime/guides/streaming-message-types

  4. final case class UserEnvelopDirectMessage(for_user: Long, message: DirectMessage) extends UserEnvelop[DirectMessage] with Product with Serializable
  5. final case class UserEnvelopDirectMessageStringified(for_user: String, message: DirectMessage) extends UserEnvelopStringified[DirectMessage] with Product with Serializable
  6. final case class UserEnvelopFriendsLists(for_user: Long, message: FriendsLists) extends UserEnvelop[FriendsLists] with Product with Serializable
  7. final case class UserEnvelopFriendsListsStringified(for_user: String, message: FriendsLists) extends UserEnvelopStringified[FriendsLists] with Product with Serializable
  8. final case class UserEnvelopSimpleEvent(for_user: Long, message: SimpleEvent) extends UserEnvelop[SimpleEvent] with Product with Serializable
  9. final 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://developer.twitter.com/en/docs/tweets/filter-realtime/guides/streaming-message-types

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

Ungrouped