com.thomsonreuters.upa.codec.Qos.copy()方法的使用及代码示例

x33g5p2x  于2022-01-28 转载在 其他  
字(1.4k)|赞(0)|评价(0)|浏览(95)

本文整理了Java中com.thomsonreuters.upa.codec.Qos.copy方法的一些代码示例,展示了Qos.copy的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Qos.copy方法的具体详情如下:
包路径:com.thomsonreuters.upa.codec.Qos
类名称:Qos
方法名:copy

Qos.copy介绍

[英]This method will perform a deep copy into the passed in parameter's members from the Object calling this method.
[中]此方法将从调用此方法的对象向传入参数的成员执行深度复制。

代码示例

代码示例来源:origin: Refinitiv/Elektron-SDK

void copy(WlItemAggregationKey destItemAggregationKey)
{
  if (_msgKeyReference != null)
  {
    _msgKeyReference.copy(destItemAggregationKey.msgKey());
  }
  else
  {
    _msgKey.copy(destItemAggregationKey.msgKey());
  }
  destItemAggregationKey.domainType(_domainType);
  if (_qosReference != null)
  {
    _qosReference.copy(destItemAggregationKey.qos());
  }
  else
  {
    _qos.copy(destItemAggregationKey.qos());
  }
}

代码示例来源:origin: Refinitiv/Elektron-SDK

serviceQos.copy(matchedQos);
    break;
      serviceQos.copy(matchedQos);
_defaultQos.copy(matchedQos);

代码示例来源:origin: Refinitiv/Elektron-SDK

qoS.copy(serviceQos);
serviceDiscoveryInfo_qoS.add(serviceQos);

代码示例来源:origin: Refinitiv/Elektron-SDK

serviceDiscoveryInfo_qoS.get(0).copy(requestMsg.qos());

代码示例来源:origin: Refinitiv/Elektron-SDK

service.info().bestQos().copy(matchedQos);

代码示例来源:origin: Refinitiv/Elektron-SDK

itemQos.copy(_requestMsg.qos());

代码示例来源:origin: Refinitiv/Elektron-SDK

_tempItemAggregationKey.qos().copy(_tempItemAggregationRequest.qos());
  _tempMatchedQos.copy(wlRequest.matchedQos());
_tempMatchedQos.copy(wlRequest.matchedQos());

相关文章