当前位置: 首页>>代码示例>>C++>>正文


C++ Incoming::__writeEmptyParams方法代码示例

本文整理汇总了C++中iceinternal::Incoming::__writeEmptyParams方法的典型用法代码示例。如果您正苦于以下问题:C++ Incoming::__writeEmptyParams方法的具体用法?C++ Incoming::__writeEmptyParams怎么用?C++ Incoming::__writeEmptyParams使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在iceinternal::Incoming的用法示例。


在下文中一共展示了Incoming::__writeEmptyParams方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: shutdown

::Ice::DispatchStatus
OWSMODULE::DataOperation::___shutdown(::IceInternal::Incoming& __inS, const ::Ice::Current& __current)
{
    __checkMode(::Ice::Normal, __current.mode);
    __inS.readEmptyParams();
    shutdown(__current);
    __inS.__writeEmptyParams();
    return ::Ice::DispatchOK;
}
开发者ID:douxiaozhao,项目名称:WMTS,代码行数:9,代码来源:OWS.cpp

示例2: get

::Ice::DispatchStatus
Pri::Ac::___get(::IceInternal::Incoming& __inS, const ::Ice::Current& __current)
{
    __checkMode(::Ice::Normal, __current.mode);
    __inS.readEmptyParams();
    get(__current);
    __inS.__writeEmptyParams();
    return ::Ice::DispatchOK;
}
开发者ID:csj561,项目名称:c_plusplus,代码行数:9,代码来源:t.cpp

示例3:

::Ice::DispatchStatus zerocexample::MessageIce::___setContent(::IceInternal::Incoming& __inS, const ::Ice::Current& __current)
{
	__checkMode(::Ice::Normal, __current.mode);
	::IceInternal::BasicStream* __is = __inS.startReadParams();
	::std::string __p_text;
	__is->read(__p_text);
	__inS.endReadParams();
	setContent(__p_text, __current);
	__inS.__writeEmptyParams();
	return ::Ice::DispatchOK;
}
开发者ID:rachwal,项目名称:RMI,代码行数:11,代码来源:message.cpp

示例4: PrintMsg

::Ice::DispatchStatus
CoreSpace::CoreBase::___PrintMsg(::IceInternal::Incoming& __inS, const ::Ice::Current& __current)
{
    __checkMode(::Ice::Normal, __current.mode);
    ::IceInternal::BasicStream* __is = __inS.startReadParams();
    ::std::string s;
    __is->read(s);
    __inS.endReadParams();
    PrintMsg(s, __current);
    __inS.__writeEmptyParams();
    return ::Ice::DispatchOK;
}
开发者ID:cugxiangzhenwei,项目名称:MySrcCode,代码行数:12,代码来源:IceCore.cpp

示例5: sendData

::Ice::DispatchStatus
RoboCompJoystickAdapter::JoystickAdapter::___sendData(::IceInternal::Incoming& __inS, const ::Ice::Current& __current)
{
    __checkMode(::Ice::Idempotent, __current.mode);
    ::IceInternal::BasicStream* __is = __inS.startReadParams();
    ::RoboCompJoystickAdapter::TData data;
    __is->read(data);
    __inS.endReadParams();
    sendData(data, __current);
    __inS.__writeEmptyParams();
    return ::Ice::DispatchOK;
}
开发者ID:mhaut,项目名称:experimentVisualIK,代码行数:12,代码来源:JoystickAdapter.cpp

示例6: personPose

::Ice::DispatchStatus
RoboCompPersonPosition::PersonPosition::___personPose(::IceInternal::Incoming& __inS, const ::Ice::Current& __current)
{
    __checkMode(::Ice::Normal, __current.mode);
    ::IceInternal::BasicStream* __is = __inS.startReadParams();
    ::RoboCompPersonPosition::MapPose personPosition;
    __is->read(personPosition);
    __inS.endReadParams();
    personPose(personPosition, __current);
    __inS.__writeEmptyParams();
    return ::Ice::DispatchOK;
}
开发者ID:alvarovillena,项目名称:velodyne_detect_person,代码行数:12,代码来源:PersonPosition.cpp

示例7: peopleDetected

::Ice::DispatchStatus
RoboCompPeopleDetection::PeopleDetection::___peopleDetected(::IceInternal::Incoming& __inS, const ::Ice::Current& __current)
{
    __checkMode(::Ice::Normal, __current.mode);
    ::IceInternal::BasicStream* __is = __inS.startReadParams();
    ::RoboCompPeopleDetection::peopleInfo people;
    __is->read(people);
    __inS.endReadParams();
    peopleDetected(people, __current);
    __inS.__writeEmptyParams();
    return ::Ice::DispatchOK;
}
开发者ID:alvarovillena,项目名称:robocomp-SIMD,代码行数:12,代码来源:PeopleDetection.cpp

示例8: transcription

::Ice::DispatchStatus
RoboCompTranscriptionRecognition::TranscriptionRecognition::___transcription(::IceInternal::Incoming& __inS, const ::Ice::Current& __current)
{
    __checkMode(::Ice::Normal, __current.mode);
    ::IceInternal::BasicStream* __is = __inS.startReadParams();
    ::std::string text;
    __is->read(text);
    __inS.endReadParams();
    transcription(text, __current);
    __inS.__writeEmptyParams();
    return ::Ice::DispatchOK;
}
开发者ID:alvarovillena,项目名称:robocomp-SIMD,代码行数:12,代码来源:transcriptionRecognition.cpp

示例9: TellClientId

::Ice::DispatchStatus
Pera::PcIdToWsServer::___TellClientId(::IceInternal::Incoming& __inS, const ::Ice::Current& __current)
{
    __checkMode(::Ice::Normal, __current.mode);
    ::IceInternal::BasicStream* __is = __inS.startReadParams();
    ::std::string strClientId;
    __is->read(strClientId);
    __inS.endReadParams();
    TellClientId(strClientId, __current);
    __inS.__writeEmptyParams();
    return ::Ice::DispatchOK;
}
开发者ID:cugxiangzhenwei,项目名称:OtherCode,代码行数:12,代码来源:StormNewsDemo.cpp

示例10: NewMsg

::Ice::DispatchStatus
Pera::News::___NewMsg(::IceInternal::Incoming& __inS, const ::Ice::Current& __current)
{
    __checkMode(::Ice::Normal, __current.mode);
    ::IceInternal::BasicStream* __is = __inS.startReadParams();
    ::std::string time;
    __is->read(time);
    __inS.endReadParams();
    NewMsg(time, __current);
    __inS.__writeEmptyParams();
    return ::Ice::DispatchOK;
}
开发者ID:cugxiangzhenwei,项目名称:OtherCode,代码行数:12,代码来源:StormNewsDemo.cpp

示例11: CFR

::Ice::DispatchStatus
RoboCompSpeechUnderstanding::SpeechUnderstanding::___CFR(::IceInternal::Incoming& __inS, const ::Ice::Current& __current)
{
    __checkMode(::Ice::Normal, __current.mode);
    ::IceInternal::BasicStream* __is = __inS.startReadParams();
    ::std::string text;
    __is->read(text);
    __inS.endReadParams();
    CFR(text, __current);
    __inS.__writeEmptyParams();
    return ::Ice::DispatchOK;
}
开发者ID:alvarovillena,项目名称:robocomp-SIMD,代码行数:12,代码来源:SpeechUnderstanding.cpp

示例12: goalInformation

::Ice::DispatchStatus
RoboCompAriaMapInformation::AriaMapInformation::___goalInformation(::IceInternal::Incoming& __inS, const ::Ice::Current& __current)
{
    __checkMode(::Ice::Normal, __current.mode);
    ::IceInternal::BasicStream* __is = __inS.startReadParams();
    ::RoboCompAriaMapInformation::GoalInfo goal;
    __is->read(goal);
    __inS.endReadParams();
    goalInformation(goal, __current);
    __inS.__writeEmptyParams();
    return ::Ice::DispatchOK;
}
开发者ID:alvarovillena,项目名称:robocomp-SIMD,代码行数:12,代码来源:AriaMapInformation.cpp

示例13: writeJoyStickBufferedData

::Ice::DispatchStatus
RoboCompJoyStick::JoyStick::___writeJoyStickBufferedData(::IceInternal::Incoming& __inS, const ::Ice::Current& __current)
{
    __checkMode(::Ice::Idempotent, __current.mode);
    ::IceInternal::BasicStream* __is = __inS.startReadParams();
    ::RoboCompJoyStick::JoyStickBufferedData gbd;
    __is->read(gbd);
    __inS.endReadParams();
    writeJoyStickBufferedData(gbd, __current);
    __inS.__writeEmptyParams();
    return ::Ice::DispatchOK;
}
开发者ID:robocomp,项目名称:robocomp-agm-basic,代码行数:12,代码来源:JoyStick.cpp

示例14: 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;
}
开发者ID:cugxiangzhenwei,项目名称:WorkPlatForm,代码行数:20,代码来源:RobotRemoteService.cpp

示例15: printString

::Ice::DispatchStatus
Demo::Printer::___printString(::IceInternal::Incoming& __inS, const ::Ice::Current& __current)
{
    __checkMode(::Ice::Normal, __current.mode);
    ::IceInternal::BasicStream* __is = __inS.startReadParams();
    ::std::string s;
    bool b;
    ::Ice::Int i;
    ::Ice::Long l;
    ::Ice::Float f;
    ::Ice::Double d;
    __is->read(s);
    __is->read(b);
    __is->read(i);
    __is->read(l);
    __is->read(f);
    __is->read(d);
    __inS.endReadParams();
    printString(s, b, i, l, f, d, __current);
    __inS.__writeEmptyParams();
    return ::Ice::DispatchOK;
}
开发者ID:IntNull93,项目名称:51_55,代码行数:22,代码来源:Printer.cpp


注:本文中的iceinternal::Incoming::__writeEmptyParams方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。