nats-pure 0.7.2 → 2.0.0.pre.alpha
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/nats/client.rb +15 -0
- data/lib/nats/io/client.rb +1350 -1293
- data/lib/nats/io/errors.rb +62 -0
- data/lib/nats/io/js.rb +1090 -0
- data/lib/nats/io/msg.rb +56 -0
- data/lib/nats/io/parser.rb +7 -7
- data/lib/nats/io/subscription.rb +92 -0
- data/lib/nats/io/version.rb +7 -3
- data/lib/nats.rb +39 -0
- metadata +10 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 15a5820d95fec0e8c400dab340af35458c52b5bab82e4decdf2b717067dcc940
|
4
|
+
data.tar.gz: 6b98522090c63c3b6338b21e2c42c8bf0172c666c79d5f39237b67a7fff63409
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b31773f6a58cfaa0728bbb544089a4181016bb32b95ca74c1effd06458428b544163bd4bba5194792d7e18c2c20386b49605d701391203aa8c8053a1e597fc57
|
7
|
+
data.tar.gz: 856e51e5c54dc25fba10f126d9072458ef1d7e145fbb9303ef643542c08cfcc155ddbd8c5bacc4d94ecf1c690a08877c6c8a9657fe91a7167d21b4bbedd513ce
|
data/lib/nats/client.rb
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
# Copyright 2021 The NATS Authors
|
2
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
3
|
+
# you may not use this file except in compliance with the License.
|
4
|
+
# You may obtain a copy of the License at
|
5
|
+
#
|
6
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
7
|
+
#
|
8
|
+
# Unless required by applicable law or agreed to in writing, software
|
9
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
10
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
11
|
+
# See the License for the specific language governing permissions and
|
12
|
+
# limitations under the License.
|
13
|
+
#
|
14
|
+
require 'nats/io/client'
|
15
|
+
require 'nats/nuid'
|