本文整理汇总了C++中pi::Timespan::totalMilliseconds方法的典型用法代码示例。如果您正苦于以下问题:C++ Timespan::totalMilliseconds方法的具体用法?C++ Timespan::totalMilliseconds怎么用?C++ Timespan::totalMilliseconds使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pi::Timespan
的用法示例。
在下文中一共展示了Timespan::totalMilliseconds方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: setSendTimeout
void SocketImpl::setSendTimeout(const pi::Timespan& timeout)
{
#if defined(_WIN32) && !defined(PIL_BROKEN_TIMEOUTS)
int value = (int) timeout.totalMilliseconds();
setOption(SOL_SOCKET, SO_SNDTIMEO, value);
#elif defined(PIL_BROKEN_TIMEOUTS)
_sndTimeout = timeout;
#else
setOption(SOL_SOCKET, SO_SNDTIMEO, timeout);
#endif
}
示例2: setReceiveTimeout
void SocketImpl::setReceiveTimeout(const pi::Timespan& timeout)
{
#ifndef PIL_BROKEN_TIMEOUTS
#if defined(_WIN32)
int value = (int) timeout.totalMilliseconds();
setOption(SOL_SOCKET, SO_RCVTIMEO, value);
#else
setOption(SOL_SOCKET, SO_RCVTIMEO, timeout);
#endif
#else
_recvTimeout = timeout;
#endif
}