Exemple #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);
}
Exemple #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);
}
void DFunctionInfo::recvImpl(ThriftBuffer &thrift) {
  thrift.read(m_namespace);
  thrift.read(m_class);
  thrift.read(m_function);
}
void DFunctionInfo::sendImpl(ThriftBuffer &thrift) {
  thrift.write(m_namespace);
  thrift.write(m_class);
  thrift.write(m_function);
}
void DThreadInfo::recvImpl(ThriftBuffer &thrift) {
  thrift.read(m_id);
  thrift.read(m_type);
  thrift.read(m_url);
}
void DThreadInfo::sendImpl(ThriftBuffer &thrift) {
  thrift.write(m_id);
  thrift.write(m_type);
  thrift.write(m_url);
}
void DSandboxInfo::recvImpl(ThriftBuffer &thrift) {
  thrift.read(m_user);
  thrift.read(m_name);
  thrift.read(m_path);
}
void DSandboxInfo::sendImpl(ThriftBuffer &thrift) {
  thrift.write(m_user);
  thrift.write(m_name);
  thrift.write(m_path);
}