class Eventum::Client::Streams
API
client for the `streams` resource
Constants
- API_PATH
The streams
API
path@return [String]
Public Instance Methods
find(name)
click to toggle source
Get a single stream
@param name [String] the unique name of the stream
@example
client = Eventum.new client.streams.find("stream-name")
@return [Hash]
@api public
# File lib/eventum/client/streams.rb, line 21 def find(name) get("#{API_PATH}/#{name}") end