Intel® Collaboration Suite for WebRTC  version 4.3.1
Open WebRTC Toolkit (OWT) Client SDK for iOS*
OWTP2PSignalingSenderProtocol.h
1 // Copyright (C) <2018> Intel Corporation
2 //
3 // SPDX-License-Identifier: Apache-2.0
4 #import <Foundation/Foundation.h>
6 // RTCSignalingSenderInterface is an ObjectiveC wrapper for
7 // SignalingSenderInterface.
8 @protocol OWTP2PSignalingSenderProtocol<NSObject>
9 - (void)sendSignalingMessage:(NSString*)message
10  to:(NSString*)targetId
11  onSuccess:(void (^)())onSuccess
12  onFailure:(void (^)(NSError*))onFailure;
13 @end