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