Consume
StartConsumerPeer(string peerId);
Parameters
Param | Type | Description |
---|---|---|
peerId | string | The peer ID of the Remote Peer |
label | string | The peer ID of the Remote Peer |
Call this function to consume individual peer.
.csharp
public void ConsumePeer(string peerId,string label)
{
_huddleClientInstance.ConsumePeer(peerId,label);
}
StopConsumePeer(string peerId,string label);
Call this function to stop consuming individual peer.
Parameters
Param | Type | Description |
---|---|---|
peerId | string | The peer ID of the Remote Peer |
label | string | The peer ID of the Remote Peer |
.csharp
public void StopConsumingPeer(string peerId,string label)
{
_huddleClientInstance.StopConsumingPeer(peerId,label);
}