Intel® Collaboration Suite for WebRTC  version 4.3.1
Open WebRTC Toolkit (OWT) Client SDK for iOS*
OWTP2PPeerConnectionChannelObserver.h
1 // Copyright (C) <2018> Intel Corporation
2 //
3 // SPDX-License-Identifier: Apache-2.0
4 #import <Foundation/Foundation.h>
5 #import "OWT/OWTRemoteStream.h"
9 @protocol OWTP2PPeerConnectionChannelObserver<NSObject>
14 - (void)onInvitedFrom:(NSString*)remoteUserId;
20 - (void)onAcceptedFrom:(NSString*)remoteUserId;
26 - (void)onDeniedFrom:(NSString*)remoteUserId;
32 - (void)onStoppedFrom:(NSString*)remoteUserId;
38 - (void)onStartedFrom:(NSString*)remoteUserId;
45 - (void)onDataReceivedFrom:(NSString*)remoteUserId withData:(NSString*)data;
50 - (void)onStreamAdded:(OWTRemoteStream*)stream;
55 - (void)onStreamRemoved:(OWTRemoteStream*)stream;
56 @end
This class represents a remote stream.
Definition: OWTRemoteStream.h:10