├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── API.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example ├── confirm │ └── confirm.dart ├── example.md ├── hello-tls │ ├── receive.dart │ └── send.dart ├── hello │ ├── receive.dart │ └── send.dart ├── pubsub │ ├── emit_log.dart │ └── receive_logs.dart ├── routing │ ├── emit_log_direct.dart │ └── receive_logs_direct.dart ├── rpc │ ├── rpc_client.dart │ └── rpc_server.dart ├── topics │ ├── emit_log_topic.dart │ └── receive_logs_topic.dart └── workers │ ├── new_task.dart │ └── worker.dart ├── lib ├── dart_amqp.dart └── src │ ├── authentication.dart │ ├── authentication │ ├── amq_plain_authenticator.dart │ ├── authenticator.dart │ └── plain_authenticator.dart │ ├── client.dart │ ├── client │ ├── amqp_message.dart │ ├── basicreturn_message.dart │ ├── channel.dart │ ├── client.dart │ ├── connection_settings.dart │ ├── consumer.dart │ ├── exchange.dart │ ├── impl │ │ ├── amqp_message_impl.dart │ │ ├── basic_return_message_impl.dart │ │ ├── channel_impl.dart │ │ ├── client_impl.dart │ │ ├── consumer_impl.dart │ │ ├── exchange_impl.dart │ │ ├── publish_notification_impl.dart │ │ └── queue_impl.dart │ ├── publish_notification.dart │ └── queue.dart │ ├── enums.dart │ ├── enums │ ├── delivery_mode.dart │ ├── enum.dart │ ├── error_type.dart │ ├── exchange_type.dart │ ├── field_type.dart │ └── frame_type.dart │ ├── exceptions.dart │ ├── exceptions │ ├── channel_exception.dart │ ├── connection_exception.dart │ ├── connection_failed_exception.dart │ ├── exchange_not_found_exception.dart │ ├── fatal_exception.dart │ ├── heartbeat_failed_exception.dart │ └── queue_not_found_exception.dart │ ├── logging.dart │ ├── logging │ └── logger.dart │ ├── protocol.dart │ └── protocol │ ├── frame │ ├── decoded_message.dart │ ├── impl │ │ ├── decoded_message_impl.dart │ │ └── heartbeat_frame_impl.dart │ └── raw_frame.dart │ ├── headers │ ├── content_header.dart │ ├── frame_header.dart │ ├── header.dart │ └── protocol_header.dart │ ├── io │ ├── amqp_message_decoder.dart │ ├── frame_writer.dart │ ├── raw_frame_parser.dart │ └── tuning_settings.dart │ ├── messages │ ├── bindings │ │ ├── basic.dart │ │ ├── channel.dart │ │ ├── confirm.dart │ │ ├── connection.dart │ │ ├── exchange.dart │ │ ├── queue.dart │ │ └── tx.dart │ ├── message.dart │ └── message_properties.dart │ └── stream │ ├── chunked_input_reader.dart │ ├── chunked_output_writer.dart │ ├── type_decoder.dart │ └── type_encoder.dart ├── pubspec.yaml ├── test ├── lib │ ├── amqp_decoder_test.dart │ ├── auth_test.dart │ ├── channel_test.dart │ ├── client_test.dart │ ├── encode_decode_test.dart │ ├── enum_test.dart │ ├── exception_handling_test.dart │ ├── exchange_test.dart │ ├── mocks │ │ ├── certs │ │ │ ├── ca_certificate.pem │ │ │ ├── ca_key.pem │ │ │ ├── client_certificate.pem │ │ │ ├── client_key.pem │ │ │ ├── server_certificate.pem │ │ │ └── server_key.pem │ │ ├── message_mocks.dart │ │ ├── mocks.dart │ │ └── server_mocks.dart │ └── queue_test.dart └── run_all.dart └── tool └── generate_bindings.dart /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/.gitignore -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/API.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /example/confirm/confirm.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/example/confirm/confirm.dart -------------------------------------------------------------------------------- /example/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/example/example.md -------------------------------------------------------------------------------- /example/hello-tls/receive.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/example/hello-tls/receive.dart -------------------------------------------------------------------------------- /example/hello-tls/send.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/example/hello-tls/send.dart -------------------------------------------------------------------------------- /example/hello/receive.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/example/hello/receive.dart -------------------------------------------------------------------------------- /example/hello/send.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/example/hello/send.dart -------------------------------------------------------------------------------- /example/pubsub/emit_log.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/example/pubsub/emit_log.dart -------------------------------------------------------------------------------- /example/pubsub/receive_logs.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/example/pubsub/receive_logs.dart -------------------------------------------------------------------------------- /example/routing/emit_log_direct.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/example/routing/emit_log_direct.dart -------------------------------------------------------------------------------- /example/routing/receive_logs_direct.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/example/routing/receive_logs_direct.dart -------------------------------------------------------------------------------- /example/rpc/rpc_client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/example/rpc/rpc_client.dart -------------------------------------------------------------------------------- /example/rpc/rpc_server.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/example/rpc/rpc_server.dart -------------------------------------------------------------------------------- /example/topics/emit_log_topic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/example/topics/emit_log_topic.dart -------------------------------------------------------------------------------- /example/topics/receive_logs_topic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/example/topics/receive_logs_topic.dart -------------------------------------------------------------------------------- /example/workers/new_task.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/example/workers/new_task.dart -------------------------------------------------------------------------------- /example/workers/worker.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/example/workers/worker.dart -------------------------------------------------------------------------------- /lib/dart_amqp.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/dart_amqp.dart -------------------------------------------------------------------------------- /lib/src/authentication.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/authentication.dart -------------------------------------------------------------------------------- /lib/src/authentication/amq_plain_authenticator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/authentication/amq_plain_authenticator.dart -------------------------------------------------------------------------------- /lib/src/authentication/authenticator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/authentication/authenticator.dart -------------------------------------------------------------------------------- /lib/src/authentication/plain_authenticator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/authentication/plain_authenticator.dart -------------------------------------------------------------------------------- /lib/src/client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/client.dart -------------------------------------------------------------------------------- /lib/src/client/amqp_message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/client/amqp_message.dart -------------------------------------------------------------------------------- /lib/src/client/basicreturn_message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/client/basicreturn_message.dart -------------------------------------------------------------------------------- /lib/src/client/channel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/client/channel.dart -------------------------------------------------------------------------------- /lib/src/client/client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/client/client.dart -------------------------------------------------------------------------------- /lib/src/client/connection_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/client/connection_settings.dart -------------------------------------------------------------------------------- /lib/src/client/consumer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/client/consumer.dart -------------------------------------------------------------------------------- /lib/src/client/exchange.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/client/exchange.dart -------------------------------------------------------------------------------- /lib/src/client/impl/amqp_message_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/client/impl/amqp_message_impl.dart -------------------------------------------------------------------------------- /lib/src/client/impl/basic_return_message_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/client/impl/basic_return_message_impl.dart -------------------------------------------------------------------------------- /lib/src/client/impl/channel_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/client/impl/channel_impl.dart -------------------------------------------------------------------------------- /lib/src/client/impl/client_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/client/impl/client_impl.dart -------------------------------------------------------------------------------- /lib/src/client/impl/consumer_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/client/impl/consumer_impl.dart -------------------------------------------------------------------------------- /lib/src/client/impl/exchange_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/client/impl/exchange_impl.dart -------------------------------------------------------------------------------- /lib/src/client/impl/publish_notification_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/client/impl/publish_notification_impl.dart -------------------------------------------------------------------------------- /lib/src/client/impl/queue_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/client/impl/queue_impl.dart -------------------------------------------------------------------------------- /lib/src/client/publish_notification.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/client/publish_notification.dart -------------------------------------------------------------------------------- /lib/src/client/queue.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/client/queue.dart -------------------------------------------------------------------------------- /lib/src/enums.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/enums.dart -------------------------------------------------------------------------------- /lib/src/enums/delivery_mode.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/enums/delivery_mode.dart -------------------------------------------------------------------------------- /lib/src/enums/enum.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/enums/enum.dart -------------------------------------------------------------------------------- /lib/src/enums/error_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/enums/error_type.dart -------------------------------------------------------------------------------- /lib/src/enums/exchange_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/enums/exchange_type.dart -------------------------------------------------------------------------------- /lib/src/enums/field_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/enums/field_type.dart -------------------------------------------------------------------------------- /lib/src/enums/frame_type.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/enums/frame_type.dart -------------------------------------------------------------------------------- /lib/src/exceptions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/exceptions.dart -------------------------------------------------------------------------------- /lib/src/exceptions/channel_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/exceptions/channel_exception.dart -------------------------------------------------------------------------------- /lib/src/exceptions/connection_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/exceptions/connection_exception.dart -------------------------------------------------------------------------------- /lib/src/exceptions/connection_failed_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/exceptions/connection_failed_exception.dart -------------------------------------------------------------------------------- /lib/src/exceptions/exchange_not_found_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/exceptions/exchange_not_found_exception.dart -------------------------------------------------------------------------------- /lib/src/exceptions/fatal_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/exceptions/fatal_exception.dart -------------------------------------------------------------------------------- /lib/src/exceptions/heartbeat_failed_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/exceptions/heartbeat_failed_exception.dart -------------------------------------------------------------------------------- /lib/src/exceptions/queue_not_found_exception.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/exceptions/queue_not_found_exception.dart -------------------------------------------------------------------------------- /lib/src/logging.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/logging.dart -------------------------------------------------------------------------------- /lib/src/logging/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/logging/logger.dart -------------------------------------------------------------------------------- /lib/src/protocol.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol.dart -------------------------------------------------------------------------------- /lib/src/protocol/frame/decoded_message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol/frame/decoded_message.dart -------------------------------------------------------------------------------- /lib/src/protocol/frame/impl/decoded_message_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol/frame/impl/decoded_message_impl.dart -------------------------------------------------------------------------------- /lib/src/protocol/frame/impl/heartbeat_frame_impl.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol/frame/impl/heartbeat_frame_impl.dart -------------------------------------------------------------------------------- /lib/src/protocol/frame/raw_frame.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol/frame/raw_frame.dart -------------------------------------------------------------------------------- /lib/src/protocol/headers/content_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol/headers/content_header.dart -------------------------------------------------------------------------------- /lib/src/protocol/headers/frame_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol/headers/frame_header.dart -------------------------------------------------------------------------------- /lib/src/protocol/headers/header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol/headers/header.dart -------------------------------------------------------------------------------- /lib/src/protocol/headers/protocol_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol/headers/protocol_header.dart -------------------------------------------------------------------------------- /lib/src/protocol/io/amqp_message_decoder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol/io/amqp_message_decoder.dart -------------------------------------------------------------------------------- /lib/src/protocol/io/frame_writer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol/io/frame_writer.dart -------------------------------------------------------------------------------- /lib/src/protocol/io/raw_frame_parser.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol/io/raw_frame_parser.dart -------------------------------------------------------------------------------- /lib/src/protocol/io/tuning_settings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol/io/tuning_settings.dart -------------------------------------------------------------------------------- /lib/src/protocol/messages/bindings/basic.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol/messages/bindings/basic.dart -------------------------------------------------------------------------------- /lib/src/protocol/messages/bindings/channel.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol/messages/bindings/channel.dart -------------------------------------------------------------------------------- /lib/src/protocol/messages/bindings/confirm.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol/messages/bindings/confirm.dart -------------------------------------------------------------------------------- /lib/src/protocol/messages/bindings/connection.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol/messages/bindings/connection.dart -------------------------------------------------------------------------------- /lib/src/protocol/messages/bindings/exchange.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol/messages/bindings/exchange.dart -------------------------------------------------------------------------------- /lib/src/protocol/messages/bindings/queue.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol/messages/bindings/queue.dart -------------------------------------------------------------------------------- /lib/src/protocol/messages/bindings/tx.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol/messages/bindings/tx.dart -------------------------------------------------------------------------------- /lib/src/protocol/messages/message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol/messages/message.dart -------------------------------------------------------------------------------- /lib/src/protocol/messages/message_properties.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol/messages/message_properties.dart -------------------------------------------------------------------------------- /lib/src/protocol/stream/chunked_input_reader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol/stream/chunked_input_reader.dart -------------------------------------------------------------------------------- /lib/src/protocol/stream/chunked_output_writer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol/stream/chunked_output_writer.dart -------------------------------------------------------------------------------- /lib/src/protocol/stream/type_decoder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol/stream/type_decoder.dart -------------------------------------------------------------------------------- /lib/src/protocol/stream/type_encoder.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/lib/src/protocol/stream/type_encoder.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/lib/amqp_decoder_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/test/lib/amqp_decoder_test.dart -------------------------------------------------------------------------------- /test/lib/auth_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/test/lib/auth_test.dart -------------------------------------------------------------------------------- /test/lib/channel_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/test/lib/channel_test.dart -------------------------------------------------------------------------------- /test/lib/client_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/test/lib/client_test.dart -------------------------------------------------------------------------------- /test/lib/encode_decode_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/test/lib/encode_decode_test.dart -------------------------------------------------------------------------------- /test/lib/enum_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/test/lib/enum_test.dart -------------------------------------------------------------------------------- /test/lib/exception_handling_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/test/lib/exception_handling_test.dart -------------------------------------------------------------------------------- /test/lib/exchange_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/test/lib/exchange_test.dart -------------------------------------------------------------------------------- /test/lib/mocks/certs/ca_certificate.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/test/lib/mocks/certs/ca_certificate.pem -------------------------------------------------------------------------------- /test/lib/mocks/certs/ca_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/test/lib/mocks/certs/ca_key.pem -------------------------------------------------------------------------------- /test/lib/mocks/certs/client_certificate.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/test/lib/mocks/certs/client_certificate.pem -------------------------------------------------------------------------------- /test/lib/mocks/certs/client_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/test/lib/mocks/certs/client_key.pem -------------------------------------------------------------------------------- /test/lib/mocks/certs/server_certificate.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/test/lib/mocks/certs/server_certificate.pem -------------------------------------------------------------------------------- /test/lib/mocks/certs/server_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/test/lib/mocks/certs/server_key.pem -------------------------------------------------------------------------------- /test/lib/mocks/message_mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/test/lib/mocks/message_mocks.dart -------------------------------------------------------------------------------- /test/lib/mocks/mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/test/lib/mocks/mocks.dart -------------------------------------------------------------------------------- /test/lib/mocks/server_mocks.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/test/lib/mocks/server_mocks.dart -------------------------------------------------------------------------------- /test/lib/queue_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/test/lib/queue_test.dart -------------------------------------------------------------------------------- /test/run_all.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/test/run_all.dart -------------------------------------------------------------------------------- /tool/generate_bindings.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achilleasa/dart_amqp/HEAD/tool/generate_bindings.dart --------------------------------------------------------------------------------