BOSS
7.1.1
BESIII Offline Software System
Toggle main menu visibility
Main Page
Related Pages
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Functions
a
c
d
e
f
g
i
l
m
n
o
p
r
s
t
u
v
w
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
v
w
x
z
Typedefs
c
d
e
g
h
i
l
m
n
o
p
r
s
t
Enumerations
Enumerator
a
b
c
d
e
f
i
k
l
m
n
o
p
r
s
t
u
w
x
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
v
w
Enumerations
b
c
d
e
f
g
h
i
k
l
m
n
p
r
s
t
v
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Related Symbols
:
a
b
c
d
e
f
g
i
k
l
m
n
o
p
r
s
t
v
w
x
Files
File List
File Members
All
!
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
!
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
Variables
!
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
h
i
j
k
l
m
n
p
r
s
t
u
v
w
z
Enumerations
Enumerator
a
b
c
d
e
f
g
h
i
k
m
n
o
p
r
s
t
u
w
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
▼
BOSS
Used Packages
Requirements
►
How to use the ERS package
Todo List
►
Namespaces
►
Classes
▼
Files
▼
File List
▼
7.1.1
►
Analysis
►
BesCxxPolicy
►
BesExamples
►
BesPolicy
►
Calibration
►
Control
►
Database
►
DetectorDescription
▼
DistBoss
►
ClientErrHandler
▼
DistBossServer
▼
DistBossServer-00-00-04
▼
DistBossServer
►
template
►
DistBossServer.h
►
JobOptionsMgr.h
►
ReaderRpc.h
►
RpcInterface.h
►
ServerErrorHandler.h
►
ServerExitHandler.h
►
WriterRpc.h
►
src
►
DistBossUtil
►
NetDataReader
►
NetDataWriter
►
RootFile
►
DQA
►
Emc
►
Event
►
EventDisplay
►
EventFilter
►
EvtPreSelect
►
External
►
Generator
►
InstallArea
►
LumTauAlg
►
MagneticField
►
Mdc
►
Muc
►
OfflineEvtFilter
►
Reconstruction
►
RootPolicy
►
Simulation
►
Tof
►
Trigger
►
Utilities
►
Validation
►
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
Loading...
Searching...
No Matches
WriterRpc.h
Go to the documentation of this file.
1
#ifndef DISTBOSS_WRITER_RPC_H
2
#define DISTBOSS_WRITER_RPC_H
3
4
#include "
DistBossUtil/PthrWriterBufPool.h
"
5
#include "
DistBossServer/RpcInterface.h
"
6
#include "dis.hxx"
7
#include <map>
8
#include <string>
9
10
template
<
class
Writer>
11
class
WriterRpc
:
virtual
public
DimRpc,
virtual
public
RpcInterface
12
{
13
public :
14
15
WriterRpc
(
const
std::string& svrName,
const
std::string& fname);
16
virtual
~WriterRpc
();
17
18
int
wait_to_end
();
19
20
21
private
:
22
23
void
rpcHandler();
24
25
void
clearBak(
int
clientId);
26
27
WriterRpc
();
//stop default
28
29
30
private
:
31
32
int
m_evtDone;
33
34
int
m_inCode;
35
int
m_outCode;
36
37
int
m_size;
38
void
* m_pEvt;
39
40
PthrWriterBufPool<Writer>
* m_writer;
41
42
std::string m_svrName;
43
44
std::map<int, AutoEnlargeBuffer*> m_evtBak;
45
};
11
class
WriterRpc
:
virtual
public
DimRpc,
virtual
public
RpcInterface
{
…
};
46
47
#include "
DistBossServer/template/WriterRpc.cc
"
48
49
#endif
private
#define private
Definition
McEventDict_dict.cpp:6
PthrWriterBufPool.h
RpcInterface.h
WriterRpc.cc
PthrWriterBufPool
Definition
PthrWriterBufPool.h:12
RpcInterface
Definition
RpcInterface.h:5
WriterRpc
Definition
WriterRpc.h:12
WriterRpc::wait_to_end
int wait_to_end()
Definition
WriterRpc.cc:41
WriterRpc::~WriterRpc
virtual ~WriterRpc()
Definition
WriterRpc.cc:18
7.1.1
DistBoss
DistBossServer
DistBossServer-00-00-04
DistBossServer
WriterRpc.h
Generated by
1.12.0