Skip to content

Commit

Permalink
merge issue: SServiceId -> SServiceMethodId
Browse files Browse the repository at this point in the history
  • Loading branch information
rex-schilasky committed Dec 6, 2024
1 parent 83a4645 commit 44c7176
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ecal/core/include/ecal/ecal_callback.h
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ namespace eCAL
* @param service_id_ The service id struct of the connection that triggered the event.
* @param data_ Event callback data structure with the event specific information.
**/
using ClientEventIDCallbackT = std::function<void(const Registration::SServiceId& service_id_, const struct SClientEventCallbackData& data_)>;
using ClientEventIDCallbackT = std::function<void(const Registration::SServiceMethodId& service_id_, const struct SClientEventCallbackData& data_)>;

/**
* @brief Server event callback function type. (deprecated)
Expand All @@ -216,5 +216,5 @@ namespace eCAL
* @param service_id_ The service id struct of the connection that triggered the event.
* @param data_ Event callback data structure with the event specific information.
**/
using ServerEventIDCallbackT = std::function<void(const Registration::SServiceId& service_id_, const struct SServerEventCallbackData& data_)>;
using ServerEventIDCallbackT = std::function<void(const Registration::SServiceMethodId& service_id_, const struct SServerEventCallbackData& data_)>;
}

0 comments on commit 44c7176

Please sign in to comment.