rservicebus 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
data/lib/rservicebus.rb
CHANGED
@@ -11,17 +11,17 @@ module RServiceBus
|
|
11
11
|
|
12
12
|
# Transaction Semantics
|
13
13
|
def Begin
|
14
|
-
@connection.
|
14
|
+
@connection.connection.transaction()
|
15
15
|
end
|
16
16
|
|
17
17
|
# Transaction Semantics
|
18
18
|
def Commit
|
19
|
-
@connection.
|
19
|
+
@connection.connection.commit()
|
20
20
|
end
|
21
21
|
|
22
22
|
# Transaction Semantics
|
23
23
|
def Rollback
|
24
|
-
@connection.
|
24
|
+
@connection.connection.rollback()
|
25
25
|
end
|
26
26
|
|
27
27
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rservicebus
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -67,6 +67,7 @@ files:
|
|
67
67
|
- lib/rservicebus/Test/Redis.rb
|
68
68
|
- lib/rservicebus/Test.rb
|
69
69
|
- lib/rservicebus/Transporter.rb
|
70
|
+
- lib/rservicebus/UserMessage/WithPayload.rb
|
70
71
|
- lib/rservicebus.rb
|
71
72
|
- bin/ReturnErroredMessagesToSourceQueue
|
72
73
|
- bin/rservicebus
|