本文整理汇总了C++中iceinternal::Incoming::__writeUserException方法的典型用法代码示例。如果您正苦于以下问题:C++ Incoming::__writeUserException方法的具体用法?C++ Incoming::__writeUserException怎么用?C++ Incoming::__writeUserException使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类iceinternal::Incoming
的用法示例。
在下文中一共展示了Incoming::__writeUserException方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: getSolution
::Ice::DispatchStatus
RoboCompPlanning::Planning::___getSolution(::IceInternal::Incoming& __inS, const ::Ice::Current& __current)
{
__checkMode(::Ice::Normal, __current.mode);
::IceInternal::BasicStream* __is = __inS.startReadParams();
::std::string Domain;
::std::string Problem;
__is->read(Domain);
__is->read(Problem);
__inS.endReadParams();
::RoboCompPlanning::Plan solution;
try
{
bool __ret = getSolution(Domain, Problem, solution, __current);
::IceInternal::BasicStream* __os = __inS.__startWriteParams(::Ice::DefaultFormat);
__os->write(solution);
__os->write(__ret);
__inS.__endWriteParams(true);
return ::Ice::DispatchOK;
}
catch(const ::RoboCompPlanning::ServerException& __ex)
{
__inS.__writeUserException(__ex, ::Ice::DefaultFormat);
}
return ::Ice::DispatchUserException;
}
示例2: getBaseState
::Ice::DispatchStatus
RoboCompGenericBase::GenericBase::___getBaseState(::IceInternal::Incoming& __inS, const ::Ice::Current& __current)
{
__checkMode(::Ice::Normal, __current.mode);
__inS.readEmptyParams();
::RoboCompGenericBase::TBaseState state;
try
{
getBaseState(state, __current);
::IceInternal::BasicStream* __os = __inS.__startWriteParams(::Ice::DefaultFormat);
__os->write(state);
__inS.__endWriteParams(true);
return ::Ice::DispatchOK;
}
catch(const ::RoboCompGenericBase::HardwareFailedException& __ex)
{
__inS.__writeUserException(__ex, ::Ice::DefaultFormat);
}
return ::Ice::DispatchUserException;
}
示例3: runRobotStop
::Ice::DispatchStatus
com::pera::base::runtime::remote::RobotRemoteService::___runRobotStop(::IceInternal::Incoming& __inS, const ::Ice::Current& __current)
{
__checkMode(::Ice::Normal, __current.mode);
::IceInternal::BasicStream* __is = __inS.startReadParams();
::std::string taskId;
__is->read(taskId);
__inS.endReadParams();
try
{
runRobotStop(taskId, __current);
__inS.__writeEmptyParams();
return ::Ice::DispatchOK;
}
catch(const ::com::pera::base::runtime::remote::RemoteException& __ex)
{
__inS.__writeUserException(__ex, ::Ice::DefaultFormat);
}
return ::Ice::DispatchUserException;
}
示例4: runLocalRobotStart
::Ice::DispatchStatus
com::pera::base::runtime::remote::RobotRemoteService::___runLocalRobotStart(::IceInternal::Incoming& __inS, const ::Ice::Current& __current)
{
__checkMode(::Ice::Normal, __current.mode);
::IceInternal::BasicStream* __is = __inS.startReadParams();
::std::string robotInfo;
__is->read(robotInfo);
__inS.endReadParams();
try
{
::std::string __ret = runLocalRobotStart(robotInfo, __current);
::IceInternal::BasicStream* __os = __inS.__startWriteParams(::Ice::DefaultFormat);
__os->write(__ret);
__inS.__endWriteParams(true);
return ::Ice::DispatchOK;
}
catch(const ::com::pera::base::runtime::remote::RemoteException& __ex)
{
__inS.__writeUserException(__ex, ::Ice::DefaultFormat);
}
return ::Ice::DispatchUserException;
}
示例5: InvokeMethod
::Ice::DispatchStatus
pera::Demo601Server::PeraDemo601ServerService::___InvokeMethod(::IceInternal::Incoming& __inS, const ::Ice::Current& __current)
{
__checkMode(::Ice::Normal, __current.mode);
::IceInternal::BasicStream* __is = __inS.startReadParams();
::std::string methodName;
::std::string strJsonIn;
__is->read(methodName);
__is->read(strJsonIn);
__inS.endReadParams();
try
{
::std::string __ret = InvokeMethod(methodName, strJsonIn, __current);
::IceInternal::BasicStream* __os = __inS.__startWriteParams(::Ice::DefaultFormat);
__os->write(__ret);
__inS.__endWriteParams(true);
return ::Ice::DispatchOK;
}
catch(const ::pera::Demo601Server::InvokeException& __ex)
{
__inS.__writeUserException(__ex, ::Ice::DefaultFormat);
}
return ::Ice::DispatchUserException;
}