pub trait ProxyHostPublisherProxyInterface: Send + Sync {
    type PublishProxyHostResponseFut: Future<Output = Result<ProxyHostPublisherPublishProxyHostResult, Error>> + Send;

    // Required method
    fn publish_proxy_host(
        &self,
        host: &str,
        addresses: &[IpAddress],
        options: &ProxyHostPublicationOptions,
        service_instance_publisher: ServerEnd<ServiceInstancePublisherMarker>
    ) -> Self::PublishProxyHostResponseFut;
}

Required Associated Types§

Required Methods§

source

fn publish_proxy_host( &self, host: &str, addresses: &[IpAddress], options: &ProxyHostPublicationOptions, service_instance_publisher: ServerEnd<ServiceInstancePublisherMarker> ) -> Self::PublishProxyHostResponseFut

Implementors§