本文整理汇总了C++中ConnectionState::getConnection方法的典型用法代码示例。如果您正苦于以下问题:C++ ConnectionState::getConnection方法的具体用法?C++ ConnectionState::getConnection怎么用?C++ ConnectionState::getConnection使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ConnectionState
的用法示例。
在下文中一共展示了ConnectionState::getConnection方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: defaultSendAck
bool AbstractCarrier::defaultSendAck(ConnectionState& proto) {
YARP_DEBUG(Logger::get(),"sending an acknowledgment");
if (proto.getConnection().requireAck()) {
writeYarpInt(0,proto);
}
return true;
}
示例2: sendConnectionStateSpecifier
bool AbstractCarrier::sendConnectionStateSpecifier(ConnectionState& proto) {
char buf[8];
Bytes header((char*)&buf[0],sizeof(buf));
OutputStream& os = proto.os();
proto.getConnection().getHeader(header);
os.write(header);
os.flush();
return os.isOk();
}
示例3: defaultExpectAck
bool AbstractCarrier::defaultExpectAck(ConnectionState& proto) {
if (proto.getConnection().requireAck()) {
char buf[8];
Bytes header((char*)&buf[0],sizeof(buf));
YARP_SSIZE_T hdr = proto.is().readFull(header);
if ((size_t)hdr!=header.length()) {
YARP_DEBUG(proto.getLog(),"did not get acknowledgement header");
return false;
}
int len = interpretYarpNumber(header);
if (len<0) {
YARP_DEBUG(proto.getLog(),"acknowledgement header is bad");
return false;
}
size_t len2 = proto.is().readDiscard(len);
if ((size_t)len!=len2) {
YARP_DEBUG(proto.getLog(),"did not get an acknowledgement of the promised length");
return false;
}
}
return true;
}