rservicebus2 0.0.9 → 0.0.10
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3bb0aa1a4b3f50b84be37995cab7b3c4a9f82afe
|
4
|
+
data.tar.gz: e129f3a2db75f0be5912e4adbe5124059927c6ea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 080a4a3fe0693e1859988eb967c74a45874a7ec564da13e07e7a6cc51a48e15f177f7b0c502c62325c8831d06251ed4b68502dbdfe70638059d77e8f04dac9ca
|
7
|
+
data.tar.gz: f4558fac3c5884ca4fda4a6563db4b1d4df400078ca19a1438e238b2ca6deb5d42212d14d65c7de0dd79a0a0a4a4c7470116c57c9423fd22caf3bbc77119dd49
|
@@ -7,17 +7,17 @@ module RServiceBus2
|
|
7
7
|
end
|
8
8
|
|
9
9
|
# Transaction Semantics
|
10
|
-
def
|
10
|
+
def begin
|
11
11
|
@connection.begin
|
12
12
|
end
|
13
13
|
|
14
14
|
# Transaction Semantics
|
15
|
-
def
|
15
|
+
def commit
|
16
16
|
@connection.commit
|
17
17
|
end
|
18
18
|
|
19
19
|
# Transaction Semantics
|
20
|
-
def
|
20
|
+
def rollback
|
21
21
|
@connection.rollback
|
22
22
|
end
|
23
23
|
end
|
@@ -4,21 +4,21 @@ module RServiceBus2
|
|
4
4
|
# Implementation of an AppResource - FluidDb2
|
5
5
|
class AppResourceFluidDb2 < AppResource
|
6
6
|
def connect(uri)
|
7
|
-
FluidDb2.
|
7
|
+
FluidDb2.db(uri)
|
8
8
|
end
|
9
9
|
|
10
10
|
# Transaction Semantics
|
11
|
-
def
|
11
|
+
def begin
|
12
12
|
@connection.begin
|
13
13
|
end
|
14
14
|
|
15
15
|
# Transaction Semantics
|
16
|
-
def
|
16
|
+
def commit
|
17
17
|
@connection.commit
|
18
18
|
end
|
19
19
|
|
20
20
|
# Transaction Semantics
|
21
|
-
def
|
21
|
+
def rollback
|
22
22
|
@connection.rollback
|
23
23
|
end
|
24
24
|
end
|