Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattheworiordan/4794e40dabbd45d6c34c7046a26bc8c6 to your computer and use it in GitHub Desktop.
Save mattheworiordan/4794e40dabbd45d6c34c7046a26bc8c6 to your computer and use it in GitHub Desktop.
Ably Idempotency for automatic retries by our SDKs
var rest = new Ably.Rest(key: ablyApiKey, idempotentRestPublishing: true);
var channel = rest.channels.get('example-channel');
channel.publish([{ data: 'payload' }]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment