Show
Ignore:
Timestamp:
02/01/10 15:42:38 (6 months ago)
Author:
trichards
Message:

Implemented getMessageId and getRequestMessageId methods to ZBoostNetworking protocol classes.
I still think getMessageId is wrong, but I'll fix that later. I think I need to add a global unique messageId generator in ApplicationServer? instead of having one per Message implementation.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • plugins/branches/0185_GEN_PHYSICS_REFACTOR_2/ZBoostNetworking/XML/I_XMLResponse.hpp

    r1236 r3350  
    7575    /// @{ 
    7676public: 
    77     static pResponse_type createResponse(pEndpoint_type _pDestinationEndpoint, StatusType _status, const std::string& _body, const std::string& _contentType = "text/html"); 
     77    static pResponse_type createResponse(pEndpoint_type _pDestinationEndpoint,  
     78        StatusType _status, const std::string& _body,  
     79        unsigned int _requestMessageId, 
     80        const std::string& _contentType = "text/html"); 
    7881    /// @} 
    7982