blob: 7489fafdd17c5a33a7c418b79d0d29aef07b1a0d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
pub use std::sync::Arc;
pub use std::task::{Context, Poll};
pub use async_trait::async_trait;
pub use bytes::Bytes;
pub use http_body::Body;
pub use hyper::Body as hyperBody;
pub use tower_service::Service;
pub use super::cluster::directory::Directory;
pub use super::cluster::directory::RegistryDirectory;
pub use super::cluster::support::cluster_invoker::ClusterInvoker;
pub use super::invocation::RpcInvocation;
pub use super::invocation::{IntoStreamingRequest, Request, Response};
pub use super::protocol::triple::triple_invoker::TripleInvoker;
pub use super::protocol::Invoker;
pub use super::registry::BoxRegistry;
pub use super::registry::Registry;
pub use super::registry::RegistryWrapper;
pub use super::triple::client::TripleClient;
pub use super::triple::codec::prost::ProstCodec;
pub use super::triple::codec::Codec;
pub use super::triple::decode::Decoding;
pub use super::triple::server::service::{
ClientStreamingSvc, ServerStreamingSvc, StreamingSvc, UnarySvc,
};
pub use super::triple::server::TripleServer;
pub use super::{empty_body, BoxBody, BoxFuture, StdError};
pub use crate::filter::service::FilterService;
pub use crate::filter::Filter;
pub use crate::triple::client::connection::Connection;