Suggestions

close search

Add Messaging, Voice, and Authentication to your apps with Vonage Communications APIs

Visit the Vonage API Developer Portal

Signaling — iOS

Use the OpenTok signaling API to send text and data between clients connected to an OpenTok session.

For conceptual information on the OpenTok signaling API, see the Signaling overview developer guide.

This topic includes the following sections:

Sending a signal to a specific client in a session

To send a signal to a specific client in a session, call the [OTSession signalWithType:data:connection:error:] method of the Session object:

OTError* error = nil;
[session signalWithType:type string:@"hello" connection:_connection error:&error];
if (error) {
    NSLog(@"signal error %@", error);
} else {
    NSLog(@"signal sent");
}

The type parameter is a string value that clients can filter on when receiving signals. Set this to an empty string if you do not need to set a type.

The string parameter is the data payload (a string) you send with the message. The limit to the size of data is 8KB.

The connection parameter is an OTConnection object corresponding to a client connected to the session that you want to signal. You obtain references to OTConnection objects in the [OTSessionDelegate:session:connectionCreated:] message.

The error parameter is set to an OTError object when the call to the method fails. In the case of success, the error parameter is set to nil.

Sending a signal to all clients in a session

To send a signal to specific clients in a session, call the [OTSession signalWithType:string:connection:error:] method of the OTSession object:

OTError* error = nil;
[session signalWithType:type string:@"hello" connection:nil error:&error)];
if (error) {
    NSLog(@"signal error %@", error);
} else {
    NSLog(@"signal sent");
}

The type parameter is a string value that clients can filter on when receiving signals. Set this to an empty string if you do not need to set a type.

The string parameter is the data payload (a string) you send with the message. The limit to the size of data is 8KB.

The error parameter is set to an OTError object when the call to the method fails. In the case of success, the error parameter is set to nil.

Receiving signals in a session

When a signal is sent in a session, the [OTSessionDelegate session:receivedSignalType:fromConnection:withString:] message is sent. The first parameter is set to the type string of the signal. The second parameter identifies the sender of the signal. The third parameter is the data string of the signal.

Note that you can use a REST API call to send a signal from your server, instead of from a client connected to the session. In this case, the fromConnection parameter is set to null.

Preventing signals from being sent during automatic reconnection

Clients will attempt to automatically reconnect to a session they disconnect unexpectedly (for example, due to a drop in network connectivity). By default, any signals you send while the client is temporarily disconnected from a session are queued and sent when (and if) it successfully reconnects. You can use the [OTSession signalWithType:string:connection:retryAfterReconnect:error:] method and set the retryAfterReconnect parameter to NO to prevent signals from being queued while the client is disconnected. For more information, see Automatic reconnection.