Java Code Examples for io.vertx.serviceproxy.ProxyHelper#unregisterService()

The following examples show how to use io.vertx.serviceproxy.ProxyHelper#unregisterService() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: HelloServiceImpl.java    From vertx-service-discovery with Apache License 2.0 4 votes vote down vote up
public void stop() {
  ProxyHelper.unregisterService(service);
}
 
Example 2
Source File: HelloServiceImpl.java    From vertx-lang-groovy with Apache License 2.0 4 votes vote down vote up
public void stop() {
  ProxyHelper.unregisterService(service);
}
 
Example 3
Source File: HelloServiceImpl.java    From vertx-rx with Apache License 2.0 4 votes vote down vote up
public void stop() {
  ProxyHelper.unregisterService(service);
}
 
Example 4
Source File: HelloServiceImpl.java    From vertx-rx with Apache License 2.0 4 votes vote down vote up
public void stop() {
  ProxyHelper.unregisterService(service);
}
 
Example 5
Source File: SchemaRegistration.java    From vertx-graphql-service-discovery with Apache License 2.0 2 votes vote down vote up
/**
 * Unregisters the message consumer of the {@link Queryable}
 * service proxy implementation.
 * <p>
 * You do not have to invoke it yourself, if you are using the
 * {@link GraphQLService}, or the schema publisher
 * and consumer interfaces.
 */
public void unregisterServiceProxy() {
    if (serviceConsumer != null) {
        ProxyHelper.unregisterService(serviceConsumer);
    }
}