Twitch SDK (Internal)
java_chatuserthreadslistenerproxy.h
Go to the documentation of this file.
1 /********************************************************************************************
2 * Twitch Broadcasting SDK
3 *
4 * This software is supplied under the terms of a license agreement with Twitch Interactive, Inc. and
5 * may not be copied or used except in accordance with the terms of that agreement
6 * Copyright (c) 2012-2016 Twitch Interactive, Inc.
7 *********************************************************************************************/
8 
9 #pragma once
10 
14 
15 
16 namespace ttv
17 {
18  namespace chat
19  {
20  class ChatAPI;
21  }
22 
23  namespace binding
24  {
25  namespace java
26  {
27  class JavaChatUserThreadsListenerProxy;
28  }
29  }
30 }
31 
32 
33 class ttv::binding::java ::JavaChatUserThreadsListenerProxy : public NativeListenerProxy<IChatUserThreadsListener>
34 {
35 public:
37 
38 public:
39  virtual void ChatThreadRealtimeMessageReceived(UserId userId, const std::string& threadId, const WhisperMessage& message) override;
40  virtual void ChatThreadParticipantsUpdated(UserId userId, const std::string& threadId, const std::vector<ChatUserInfo>& participants) override;
41  virtual void ChatThreadUnreadMessageWindowChanged(UserId userId, const std::string& threadId, MessageId lastMessageId, MessageId lastReadMessageId) override;
42  virtual void ChatThreadMutedStatusChanged(UserId userId, const std::string& threadId, bool muted) override;
43  virtual void ChatThreadRemoved(UserId userId, const std::string& threadId) override;
44 
45  virtual void ChatThreadGlobalUnreadCountsChanged(UserId userId, const UnreadThreadCounts& counts) override;
46 };
uint32_t UserId
Definition: coretypes.h:22
uint32_t MessageId
Definition: chattypes.h:26
JSON (JavaScript Object Notation).
Definition: adsapi.h:16
Definition: chattypes.h:745
Definition: java_audioformat.h:17
Definition: java_chatuserthreadslistenerproxy.h:33
Definition: chattypes.h:343