Example #1
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);
}
Example #2
0
void DFunctionInfo::recvImpl(ThriftBuffer &thrift) {
  thrift.read(m_namespace);
  thrift.read(m_class);
  thrift.read(m_function);
}
Example #3
0
void DThreadInfo::recvImpl(ThriftBuffer &thrift) {
  thrift.read(m_id);
  thrift.read(m_type);
  thrift.read(m_url);
}
Example #4
0
void DSandboxInfo::recvImpl(ThriftBuffer &thrift) {
  thrift.read(m_user);
  thrift.read(m_name);
  thrift.read(m_path);
}