/Users/deen/code/yugabyte-db/src/yb/rpc/service_if.cc
Line | Count | Source |
1 | | // Licensed to the Apache Software Foundation (ASF) under one |
2 | | // or more contributor license agreements. See the NOTICE file |
3 | | // distributed with this work for additional information |
4 | | // regarding copyright ownership. The ASF licenses this file |
5 | | // to you under the Apache License, Version 2.0 (the |
6 | | // "License"); you may not use this file except in compliance |
7 | | // with the License. You may obtain a copy of the License at |
8 | | // |
9 | | // http://www.apache.org/licenses/LICENSE-2.0 |
10 | | // |
11 | | // Unless required by applicable law or agreed to in writing, |
12 | | // software distributed under the License is distributed on an |
13 | | // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
14 | | // KIND, either express or implied. See the License for the |
15 | | // specific language governing permissions and limitations |
16 | | // under the License. |
17 | | // |
18 | | // The following only applies to changes made to this file as part of YugaByte development. |
19 | | // |
20 | | // Portions Copyright (c) YugaByte, Inc. |
21 | | // |
22 | | // Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except |
23 | | // in compliance with the License. You may obtain a copy of the License at |
24 | | // |
25 | | // http://www.apache.org/licenses/LICENSE-2.0 |
26 | | // |
27 | | // Unless required by applicable law or agreed to in writing, software distributed under the License |
28 | | // is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express |
29 | | // or implied. See the License for the specific language governing permissions and limitations |
30 | | // under the License. |
31 | | // |
32 | | #include "yb/rpc/service_if.h" |
33 | | |
34 | | #include <string> |
35 | | |
36 | | #include "yb/util/metrics.h" |
37 | | |
38 | | using std::string; |
39 | | using strings::Substitute; |
40 | | |
41 | | namespace yb { |
42 | | namespace rpc { |
43 | | |
44 | 2.23k | ServiceIf::~ServiceIf() { |
45 | 2.23k | } |
46 | | |
47 | 1.83k | void ServiceIf::Shutdown() { |
48 | 1.83k | } |
49 | | |
50 | 2.36M | RpcMethodMetrics::RpcMethodMetrics() = default; |
51 | | |
52 | | RpcMethodMetrics::RpcMethodMetrics(const scoped_refptr<Counter>& request_bytes_, |
53 | | const scoped_refptr<Counter>& response_bytes_, |
54 | | const scoped_refptr<Histogram>& handler_latency_) |
55 | | : request_bytes(request_bytes_), response_bytes(response_bytes_), |
56 | 2.58M | handler_latency(handler_latency_) { |
57 | 2.58M | } |
58 | | |
59 | 5.62M | RpcMethodMetrics::~RpcMethodMetrics() = default; |
60 | | |
61 | 3.25M | RpcMethodMetrics::RpcMethodMetrics(const RpcMethodMetrics&) = default; |
62 | | |
63 | | } // namespace rpc |
64 | | } // namespace yb |