removing non-existing file from the build
[folly.git] / folly / wangle / service / ServerDispatcher.h
1 /*
2  * Copyright 2015 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #pragma once
17
18 #include <folly/wangle/channel/Handler.h>
19 #include <folly/wangle/service/Service.h>
20
21 namespace folly { namespace wangle {
22
23 /**
24  * Dispatch requests from pipeline one at a time synchronously.
25  * Concurrent requests are queued in the pipeline.
26  */
27 template <typename Req, typename Resp = Req>
28 class SerialServerDispatcher : public HandlerAdapter<Req, Resp> {
29  public:
30
31   typedef typename HandlerAdapter<Req, Resp>::Context Context;
32
33   explicit SerialServerDispatcher(Service<Req, Resp>* service)
34       : service_(service) {}
35
36   void read(Context* ctx, Req in) override {
37     auto resp = (*service_)(std::move(in)).get();
38     ctx->fireWrite(std::move(resp));
39   }
40
41  private:
42
43   Service<Req, Resp>* service_;
44 };
45
46 }} // namespace