9#ifndef SKYWAY_ROOM_INTERFACE_REMOTE_ROOM_MEMBER_HPP
10#define SKYWAY_ROOM_INTERFACE_REMOTE_ROOM_MEMBER_HPP
12#include "skyway/room/interface/room_member.hpp"
23 virtual std::unique_ptr<RoomSubscription>
Subscribe(
const std::string& publication_id) = 0;
25 virtual bool Unsubscribe(
const std::string& subscription_id) = 0;
RemoteRoomMemberの操作を行うインターフェース
Definition remote_room_member.hpp:19
virtual bool Unsubscribe(const std::string &subscription_id)=0
購読しているSubscriptionの購読を解除します。
virtual std::unique_ptr< RoomSubscription > Subscribe(const std::string &publication_id)=0
公開されているPublicationを購読します。
RoomMemberの操作を行うインターフェース
Definition room_member.hpp:23