Mark Erickson | 932c470 | 2015-08-29 10:46:51 -0500 | [diff] [blame] | 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 | library thrift; |
| 19 | |
| 20 | import 'dart:async'; |
| 21 | import 'dart:convert' show Utf8Codec; |
| 22 | import 'dart:typed_data' show ByteData; |
| 23 | import 'dart:typed_data' show Uint8List; |
| 24 | |
| 25 | import 'package:crypto/crypto.dart' show CryptoUtils; |
| 26 | import 'package:http/http.dart' show Client; |
| 27 | import 'package:logging/logging.dart'; |
| 28 | |
| 29 | part 'src/t_application_error.dart'; |
| 30 | part 'src/t_base.dart'; |
| 31 | part 'src/t_error.dart'; |
| 32 | part 'src/t_processor.dart'; |
| 33 | |
| 34 | part 'src/protocol/t_binary_protocol.dart'; |
| 35 | part 'src/protocol/t_field.dart'; |
| 36 | part 'src/protocol/t_json_protocol.dart'; |
| 37 | part 'src/protocol/t_list.dart'; |
| 38 | part 'src/protocol/t_map.dart'; |
| 39 | part 'src/protocol/t_message.dart'; |
| 40 | part 'src/protocol/t_multiplexed_protocol.dart'; |
| 41 | part 'src/protocol/t_protocol.dart'; |
| 42 | part 'src/protocol/t_protocol_decorator.dart'; |
| 43 | part 'src/protocol/t_protocol_error.dart'; |
| 44 | part 'src/protocol/t_protocol_factory.dart'; |
| 45 | part 'src/protocol/t_protocol_util.dart'; |
| 46 | part 'src/protocol/t_set.dart'; |
| 47 | part 'src/protocol/t_struct.dart'; |
| 48 | part 'src/protocol/t_type.dart'; |
| 49 | |
| 50 | part 'src/transport/t_buffered_transport.dart'; |
| 51 | part 'src/transport/t_framed_transport.dart'; |
| 52 | part 'src/transport/t_http_transport.dart'; |
| 53 | part 'src/transport/t_message_reader.dart'; |
| 54 | part 'src/transport/t_socket.dart'; |
| 55 | part 'src/transport/t_transport.dart'; |
| 56 | part 'src/transport/t_transport_error.dart'; |
| 57 | part 'src/transport/t_transport_factory.dart'; |
| 58 | part 'src/transport/t_socket_transport.dart'; |