本文整理汇总了Java中com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl类的典型用法代码示例。如果您正苦于以下问题:Java CorbaMessageMediatorImpl类的具体用法?Java CorbaMessageMediatorImpl怎么用?Java CorbaMessageMediatorImpl使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
CorbaMessageMediatorImpl类属于com.sun.corba.se.impl.protocol包,在下文中一共展示了CorbaMessageMediatorImpl类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createMessageMediator
import com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl; //导入依赖的package包/类
public MessageMediator createMessageMediator(Broker broker,
ContactInfo contactInfo,
Connection connection,
String methodName,
boolean isOneWay)
{
// REVISIT: Would like version, ior, requestid, etc., decisions
// to be in client subcontract. Cannot pass these to this
// factory method because it breaks generic abstraction.
// Maybe set methods on mediator called from subcontract
// after creation?
CorbaMessageMediator messageMediator =
new CorbaMessageMediatorImpl(
(ORB) broker,
contactInfo,
connection,
GIOPVersion.chooseRequestVersion( (ORB)broker,
effectiveTargetIOR),
effectiveTargetIOR,
((CorbaConnection)connection).getNextRequestId(),
getAddressingDisposition(),
methodName,
isOneWay);
return messageMediator;
}
示例2: createMessageMediator
import com.sun.corba.se.impl.protocol.CorbaMessageMediatorImpl; //导入依赖的package包/类
public MessageMediator createMessageMediator(Broker broker,
ContactInfo contactInfo,
Connection connection,
String methodName,
boolean isOneWay)
{
if (connection != null) {
/// XXX LOGGING
throw new RuntimeException("connection is not null");
}
CorbaMessageMediator messageMediator =
new CorbaMessageMediatorImpl(
(ORB) broker,
contactInfo,
null, // Connection;
GIOPVersion.chooseRequestVersion( (ORB)broker,
effectiveTargetIOR),
effectiveTargetIOR,
requestId++, // Fake RequestId
getAddressingDisposition(),
methodName,
isOneWay);
return messageMediator;
}