forked from ceph/ceph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFuture.cc
40 lines (29 loc) · 803 Bytes
/
Future.cc
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
// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*-
// vim: ts=8 sw=2 smarttab
#include "journal/Future.h"
#include "journal/FutureImpl.h"
#include "include/assert.h"
namespace journal {
void Future::flush(Context *on_safe) {
m_future_impl->flush(on_safe);
}
void Future::wait(Context *on_safe) {
assert(on_safe != NULL);
m_future_impl->wait(on_safe);
}
bool Future::is_complete() const {
return m_future_impl->is_complete();
}
int Future::get_return_value() const {
return m_future_impl->get_return_value();
}
void intrusive_ptr_add_ref(FutureImpl *p) {
p->get();
}
void intrusive_ptr_release(FutureImpl *p) {
p->put();
}
std::ostream &operator<<(std::ostream &os, const Future &future) {
return os << *future.m_future_impl.get();
}
} // namespace journal