blob: 5c9f69ed4a0fd452c403f0c742b2ae4a3115f117 [file] [log] [blame]
Zsolt Harasztia3410312016-09-18 23:29:04 -07001#
Zsolt Haraszti3eb27a52017-01-03 21:56:48 -08002# Copyright 2017 the original author or authors.
Zsolt Harasztia3410312016-09-18 23:29:04 -07003#
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
17"""
18RPC request dispatcher
19"""
20
21from twisted.internet.defer import DeferredQueue
22
23
24class RpcDispatcher(object):
25
26 def __init__(self):
27 self.queue = DeferredQueue()
28
29 # work in progress