1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
use super::frame::Frame;
use super::frame::ToFrameBody;
use super::message_builder::MessageBuilder;
use super::header::*;
use super::session::Session;
pub struct Transaction<'tx, T: 'static> {
pub id: String,
pub session: &'tx mut Session<T>,
}
impl<'tx, T: 'static> Transaction<'tx, T>
where
T: tokio_io::AsyncWrite + tokio_io::AsyncRead + Send + 'static,
{
pub fn new(session: &'tx mut Session<T>) -> Transaction<'tx, T> {
Transaction {
id: format!("tx/{}", session.generate_transaction_id()),
session,
}
}
pub fn message<'builder, B: ToFrameBody>(
&'builder mut self,
destination: &str,
body_convertible: B,
) -> MessageBuilder<'builder, T> {
let mut send_frame = Frame::send(destination, body_convertible.to_frame_body());
send_frame
.headers
.push(Header::new(TRANSACTION, self.id.as_ref()));
MessageBuilder::new(self.session, send_frame)
}
pub fn begin(&mut self) {
let begin_frame = Frame::begin(self.id.as_ref());
self.session.send_frame(begin_frame)
}
pub fn commit(self) {
let commit_frame = Frame::commit(self.id.as_ref());
self.session.send_frame(commit_frame)
}
pub fn abort(self) {
let abort_frame = Frame::abort(self.id.as_ref());
self.session.send_frame(abort_frame)
}
}