/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once #include #include #include #include #include #include #include namespace apache { namespace thrift { /** * Callback object for a single response RPC. */ class ThriftClientCallback final : public folly::HHWheelTimer::Callback { public: ThriftClientCallback( folly::EventBase* evb, bool oneWay, RequestClientCallback::Ptr cb, std::chrono::milliseconds timeout); virtual ~ThriftClientCallback(); ThriftClientCallback(const ThriftClientCallback&) = delete; ThriftClientCallback& operator=(const ThriftClientCallback&) = delete; // Called from the channel once the request has been sent. // // Calls must be scheduled on the event base obtained from // "getEventBase()". void onThriftRequestSent(); // Called from the channel at the end of a single response RPC. // // Calls must be scheduled on the event base obtained from // "getEventBase()". void onThriftResponse( ResponseRpcMetadata&& metadata, std::unique_ptr payload) noexcept; // Called from the channel in case of an error RPC (instead of // calling "onThriftResponse()"). // // Calls must be scheduled on the event base obtained from // "getEventBase()". void onError(folly::exception_wrapper ex) noexcept; // Returns the event base on which calls to "onThriftRequestSent()", // "onThriftResponse()", and "onError()" must be scheduled. folly::EventBase* getEventBase() const; void setTimedOut(folly::Function onTimedout); protected: void timeoutExpired() noexcept override; void callbackCanceled() noexcept override; public: // The default timeout for a Thrift RPC. static const std::chrono::milliseconds kDefaultTimeout; protected: folly::EventBase* evb_; bool oneWay_; RequestClientCallback::Ptr cb_; bool active_; std::chrono::milliseconds timeout_; folly::Function onTimedout_; }; } // namespace thrift } // namespace apache