Sha256: 305ce6c97fb9edfd91be21c37ca3b854ce8ed07206f739d2180c7e3363465764

Contents?: true

Size: 1.08 KB

Versions: 14

Compression:

Stored size: 1.08 KB

Contents

# Copyright 2021 The NATS Authors
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

require 'nats/io/client'
require 'nats/nuid'

# A thread safe Ruby client for the NATS messaging system (https://nats.io).
#
# @example Service example
#   nc = NATS.connect("demo.nats.io")
#   nc.subscribe("foo") do |msg|
#     msg.respond("Hello World")
#   end
#
#   resp = nc.request("foo")
#   puts "Received: #{msg.data}"
# 
# 
# @example Stream example
#   nc = NATS.connect("demo.nats.io")
#   sub = nc.subscribe("foo")
# 
#   nc.publish("foo")
#   msg = sub.next_msg
#   puts "Received: #{msg.data}"
# 
module NATS
end

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
nats-pure-2.4.0 lib/nats.rb
nats-pure-2.3.0 lib/nats.rb
rubypitaya-3.12.5 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/nats-pure-2.2.1/lib/nats.rb
rubypitaya-3.12.4 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/nats-pure-2.2.1/lib/nats.rb
rubypitaya-3.12.3 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/nats-pure-2.2.1/lib/nats.rb
rubypitaya-3.12.2 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/nats-pure-2.2.1/lib/nats.rb
nats-pure-2.2.1 lib/nats.rb
nats-pure-2.2.0 lib/nats.rb
nats-pure-2.1.2 lib/nats.rb
nats-pure-2.1.0 lib/nats.rb
nats-pure-2.0.0 lib/nats.rb
nats-pure-2.0.0.pre.rc2 lib/nats.rb
nats-pure-2.0.0.pre.rc1 lib/nats.rb
nats-pure-2.0.0.pre.alpha lib/nats.rb