SMACC2
Loading...
Searching...
No Matches
smacc2
include
smacc2
client_behaviors
cb_service_server_callback_base.hpp
Go to the documentation of this file.
1
// Copyright 2021 RobosoftAI Inc.
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
5
// You may obtain a copy of the License at
6
//
7
// http://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software
10
// distributed under the License is distributed on an "AS IS" BASIS,
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14
15
#pragma once
16
#include <
smacc2/smacc_client_behavior.hpp
>
17
18
namespace
smacc2
19
{
20
template
<
typename
TService>
21
class
CbServiceServerCallbackBase
:
public
smacc2::SmaccClientBehavior
22
{
23
public
:
24
virtual
void
onEntry
()
override
25
{
26
this->
requiresClient
(
attachedClient_
);
27
attachedClient_
->onServiceRequestReceived(
28
&
CbServiceServerCallbackBase::onServiceRequestReceived
,
this
);
29
}
30
31
virtual
void
onServiceRequestReceived
(
32
const
std::shared_ptr<typename TService::Request>
req
,
33
std::shared_ptr<typename TService::Response>
res
) = 0;
34
35
protected
:
36
smacc2::client_bases::SmaccServiceServerClient<TService>
*
attachedClient_
=
nullptr
;
37
};
38
}
// namespace smacc2
smacc2::CbServiceServerCallbackBase
Definition
cb_service_server_callback_base.hpp:22
smacc2::CbServiceServerCallbackBase::onEntry
virtual void onEntry() override
Definition
cb_service_server_callback_base.hpp:24
smacc2::CbServiceServerCallbackBase::onServiceRequestReceived
virtual void onServiceRequestReceived(const std::shared_ptr< typename TService::Request > req, std::shared_ptr< typename TService::Response > res)=0
smacc2::CbServiceServerCallbackBase::attachedClient_
smacc2::client_bases::SmaccServiceServerClient< TService > * attachedClient_
Definition
cb_service_server_callback_base.hpp:36
smacc2::ISmaccClientBehavior::requiresClient
void requiresClient(SmaccClientType *&storage)
Definition
smacc_client_behavior_impl.hpp:67
smacc2::SmaccClientBehavior
Definition
smacc_client_behavior.hpp:27
smacc2
Definition
callback_counter_semaphore.hpp:30
smacc_client_behavior.hpp
smacc2::default_events::EvTopicMessage
Definition
smacc_default_events.hpp:155
Generated by
1.9.8