]> git.proxmox.com Git - ceph.git/blame - ceph/src/jaegertracing/thrift/lib/rb/lib/thrift.rb
buildsys: switch source download to quincy
[ceph.git] / ceph / src / jaegertracing / thrift / lib / rb / lib / thrift.rb
CommitLineData
f67539c2
TL
1#
2# Licensed to the Apache Software Foundation (ASF) under one
3# or more contributor license agreements. See the NOTICE file
4# distributed with this work for additional information
5# regarding copyright ownership. The ASF licenses this file
6# to you under the Apache License, Version 2.0 (the
7# "License"); you may not use this file except in compliance
8# with the License. You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing,
13# software distributed under the License is distributed on an
14# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15# KIND, either express or implied. See the License for the
16# specific language governing permissions and limitations
17# under the License.
18#
19# Contains some contributions under the Thrift Software License.
20# Please see doc/old-thrift-license.txt in the Thrift distribution for
21# details.
22
23$:.unshift File.dirname(__FILE__)
24
25require 'thrift/bytes'
26require 'thrift/core_ext'
27require 'thrift/exceptions'
28require 'thrift/types'
29require 'thrift/processor'
30require 'thrift/multiplexed_processor'
31require 'thrift/client'
32require 'thrift/struct'
33require 'thrift/union'
34require 'thrift/struct_union'
35
36# serializer
37require 'thrift/serializer/serializer'
38require 'thrift/serializer/deserializer'
39
40# protocol
41require 'thrift/protocol/base_protocol'
42require 'thrift/protocol/binary_protocol'
43require 'thrift/protocol/binary_protocol_accelerated'
44require 'thrift/protocol/compact_protocol'
45require 'thrift/protocol/json_protocol'
46require 'thrift/protocol/multiplexed_protocol'
47
48# transport
49require 'thrift/transport/base_transport'
50require 'thrift/transport/base_server_transport'
51require 'thrift/transport/socket'
52require 'thrift/transport/ssl_socket'
53require 'thrift/transport/server_socket'
54require 'thrift/transport/ssl_server_socket'
55require 'thrift/transport/unix_socket'
56require 'thrift/transport/unix_server_socket'
57require 'thrift/transport/buffered_transport'
58require 'thrift/transport/framed_transport'
59require 'thrift/transport/http_client_transport'
60require 'thrift/transport/io_stream_transport'
61require 'thrift/transport/memory_buffer_transport'
62
63# server
64require 'thrift/server/base_server'
65require 'thrift/server/nonblocking_server'
66require 'thrift/server/simple_server'
67require 'thrift/server/threaded_server'
68require 'thrift/server/thread_pool_server'
69
70require 'thrift/thrift_native'