Ejemplo n.º 1
0
void DThreadInfo::sendImpl(ThriftBuffer &thrift) {
  TRACE(2, "DThreadInfo::sendImpl\n");
  thrift.write(m_id);
  thrift.write(m_desc);
  thrift.write(m_type);
  thrift.write(m_url);
}
Ejemplo n.º 2
0
void DThreadInfo::recvImpl(ThriftBuffer &thrift) {
  TRACE(2, "DThreadInfo::recvImpl\n");
  thrift.read(m_id);
  thrift.read(m_desc);
  thrift.read(m_type);
  thrift.read(m_url);
}
Ejemplo n.º 3
0
void DFunctionInfo::recvImpl(ThriftBuffer &thrift) {
  thrift.read(m_namespace);
  thrift.read(m_class);
  thrift.read(m_function);
}
Ejemplo n.º 4
0
void DFunctionInfo::sendImpl(ThriftBuffer &thrift) {
  thrift.write(m_namespace);
  thrift.write(m_class);
  thrift.write(m_function);
}
Ejemplo n.º 5
0
void DThreadInfo::recvImpl(ThriftBuffer &thrift) {
  thrift.read(m_id);
  thrift.read(m_type);
  thrift.read(m_url);
}
Ejemplo n.º 6
0
void DThreadInfo::sendImpl(ThriftBuffer &thrift) {
  thrift.write(m_id);
  thrift.write(m_type);
  thrift.write(m_url);
}
Ejemplo n.º 7
0
void DSandboxInfo::recvImpl(ThriftBuffer &thrift) {
  thrift.read(m_user);
  thrift.read(m_name);
  thrift.read(m_path);
}
Ejemplo n.º 8
0
void DSandboxInfo::sendImpl(ThriftBuffer &thrift) {
  thrift.write(m_user);
  thrift.write(m_name);
  thrift.write(m_path);
}