ReplicatorConnection
public protocol ReplicatorConnection
ENTERPRISE EDITION ONLY.
The replicator connection used by the application to tell the replicator to consume the data received from the other peer or to close the connection.
-
Tells the replicator to close the current replicator connection. In return, the replicator will call the MessageEndpointConnection’s close(error, completion) function to acknowledge the closed connection.
Declaration
Swift
func close(error: MessagingError?)
Parameters
error
The error if available.
-
Tells the replicator to consume the data received from the other peer.
Declaration
Swift
func receive(message: Message)
Parameters
message
The message.