Sha256: a49a9f781922bbfda5273000c8faf27155958ad08339dafe85edd432899246f1

Contents?: true

Size: 1.66 KB

Versions: 4

Compression:

Stored size: 1.66 KB

Contents

LaunchDarkly SSE Client for Ruby
================================

[![Gem Version](https://badge.fury.io/rb/ld-eventsource.svg)](http://badge.fury.io/rb/ld-eventsource) [![Circle CI](https://circleci.com/gh/launchdarkly/ruby-eventsource/tree/master.svg?style=svg)](https://circleci.com/gh/launchdarkly/ruby-eventsource/tree/master)

A client for the [Server-Sent Events](https://www.w3.org/TR/eventsource/) protocol. This implementation runs on a worker thread, and uses the [`socketry`](https://rubygems.org/gems/socketry) gem to manage a persistent connection. Its primary purpose is to support the [LaunchDarkly SDK for Ruby](https://github.com/launchdarkly/ruby-client), but it can be used independently.

Parts of this code are based on https://github.com/Tonkpils/celluloid-eventsource, but it does not use Celluloid.

Supported Ruby versions
-----------------------

This gem has a minimum Ruby version of 2.2.6, or 9.1.6 for JRuby.

Quick setup
-----------

1. Install the Ruby SDK with `gem`:

```shell
gem install ld-eventsource
```

2. Import the code:

```ruby
require 'ld-eventsource'
```

3. Create a new SSE client instance and register your event handler:

```ruby
sse_client = SSE::Client.new("http://hostname/resource/path") do |client|
  client.on_event do |event|
    puts "I received an event: #{event.type}, #{event.data}"
  end
end
```

For other options available with the `Client` constructor, see the [API documentation](https://www.rubydoc.info/gems/ld-eventsource).

Contributing
------------

We welcome questions, suggestions, and pull requests at our [Github repository](https://github.com/launchdarkly/ruby-eventsource). Pull requests should be done from a fork.

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ld-eventsource-1.0.3 README.md
ld-eventsource-1.0.2 README.md
ld-eventsource-1.0.1 README.md
ld-eventsource-1.0.0 README.md