Codota Logo
ProxyGen.<init>
Code IndexAdd Codota to your IDE (free)

How to use
io.vertx.codegen.annotations.ProxyGen
constructor

Best Java code snippets using io.vertx.codegen.annotations.ProxyGen.<init> (Showing top 20 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
FileOutputStream f =
  • Codota IconFile file;new FileOutputStream(file)
  • Codota IconString name;new FileOutputStream(name)
  • Codota IconFile file;new FileOutputStream(file, true)
  • Smart code suggestions by Codota
}
origin: vert-x3/vertx-examples

@ProxyGen
@VertxGen
public interface MyService {

 @Fluent
 MyService sayHello(String name, Handler<AsyncResult<String>> handler);
}

origin: vert-x3/vertx-examples

@ProxyGen
@VertxGen
public interface SomeDatabaseService {
 @GenIgnore
 static SomeDatabaseService create() {
  return new SomeDatabaseServiceImpl();
 }

 @GenIgnore
 static io.vertx.example.reactivex.services.serviceproxy.reactivex.SomeDatabaseService createProxy(Vertx vertx, String address) {
  return new io.vertx.example.reactivex.services.serviceproxy.reactivex.SomeDatabaseService(new SomeDatabaseServiceVertxEBProxy(vertx, address));
 }

 // To use Rx-ified method, just declare your methods in a call-back style here.
 // The Rx-ified methods will be automatically generated.
 @Fluent
 SomeDatabaseService getDataById(int id, Handler<AsyncResult<JsonObject>> resultHandler);
}

origin: vert-x3/vertx-examples

@ProxyGen // Generate the proxy and handler
origin: io.knotx/knotx-core

@Deprecated
@ProxyGen
@VertxGen
public interface AdapterProxy {

 static AdapterProxy createProxy(Vertx vertx, String address) {
  return new AdapterProxyVertxEBProxy(vertx, address);
 }

 static AdapterProxy createProxyWithOptions(Vertx vertx, String address, DeliveryOptions deliveryOptions) {
  return new AdapterProxyVertxEBProxy(vertx, address, deliveryOptions);
 }

 void process(AdapterRequest request, Handler<AsyncResult<AdapterResponse>> result);
}

origin: Cognifide/knotx

@Deprecated
@ProxyGen
@VertxGen
public interface AdapterProxy {

 static AdapterProxy createProxy(Vertx vertx, String address) {
  return new AdapterProxyVertxEBProxy(vertx, address);
 }

 static AdapterProxy createProxyWithOptions(Vertx vertx, String address, DeliveryOptions deliveryOptions) {
  return new AdapterProxyVertxEBProxy(vertx, address, deliveryOptions);
 }

 void process(AdapterRequest request, Handler<AsyncResult<AdapterResponse>> result);
}

origin: vert-x3/vertx-service-proxy

/**
 * @author <a href="http://tfox.org">Tim Fox</a>
 */
@ProxyGen
public interface InvalidClose3 {

 @ProxyClose
 void closeIt(Handler<AsyncResult<String>> handler, String s);
}

origin: io.knotx/knotx-core

@ProxyGen
@VertxGen
public interface RepositoryConnectorProxy {

 static RepositoryConnectorProxy createProxy(Vertx vertx, String address) {
  return new RepositoryConnectorProxyVertxEBProxy(vertx, address);
 }

 static RepositoryConnectorProxy createProxyWithOptions(Vertx vertx, String address, DeliveryOptions deliveryOptions) {
  return new RepositoryConnectorProxyVertxEBProxy(vertx, address, deliveryOptions);
 }

 void process(ClientRequest request, Handler<AsyncResult<ClientResponse>> result);
}

origin: vert-x3/vertx-service-proxy

/**
 * @author <a href="http://tfox.org">Tim Fox</a>
 */
@ProxyGen
public interface ValidProxyCloseWithFuture {

 @ProxyClose
 void closeIt(Handler<AsyncResult<Void>> handler);

}

origin: vert-x3/vertx-service-proxy

/**
 * @author <a href="http://tfox.org">Tim Fox</a>
 */
@ProxyGen
public interface InvalidClose1 {

 @ProxyClose
 void closeIt(Handler<AsyncResult<String>> handler);
}

origin: vert-x3/vertx-service-proxy

/**
 * @author <a href="http://tfox.org">Tim Fox</a>
 */
@ProxyGen
public interface InvalidParams1 {

 void someMethod(VertxGen vertxGen);
}

origin: io.knotx/knotx-forms-api

@ProxyGen
@VertxGen
public interface FormsAdapterProxy {

 static FormsAdapterProxy createProxy(Vertx vertx, String address) {
  return new FormsAdapterProxyVertxEBProxy(vertx, address);
 }

 static FormsAdapterProxy createProxyWithOptions(Vertx vertx, String address, DeliveryOptions deliveryOptions) {
  return new FormsAdapterProxyVertxEBProxy(vertx, address, deliveryOptions);
 }

 void process(FormsAdapterRequest request, Handler<AsyncResult<FormsAdapterResponse>> result);
}

origin: io.knotx/knotx-databridge-api

@ProxyGen
@VertxGen
public interface DataSourceAdapterProxy {

 static DataSourceAdapterProxy createProxy(Vertx vertx, String address) {
  return new DataSourceAdapterProxyVertxEBProxy(vertx, address);
 }

 static DataSourceAdapterProxy createProxyWithOptions(Vertx vertx, String address, DeliveryOptions deliveryOptions) {
  return new DataSourceAdapterProxyVertxEBProxy(vertx, address, deliveryOptions);
 }

 void process(DataSourceAdapterRequest request, Handler<AsyncResult<DataSourceAdapterResponse>> result);
}

origin: io.knotx/knotx-core

@ProxyGen
@VertxGen
public interface KnotProxy {

 static KnotProxy createProxy(Vertx vertx, String address) {
  return new KnotProxyVertxEBProxy(vertx, address);
 }

 static KnotProxy createProxyWithOptions(Vertx vertx, String address, DeliveryOptions deliveryOptions) {
  return new KnotProxyVertxEBProxy(vertx, address, deliveryOptions);
 }

 void process(KnotContext knotContext, Handler<AsyncResult<KnotContext>> result);
}

origin: Cognifide/knotx

@ProxyGen
@VertxGen
public interface KnotProxy {

 static KnotProxy createProxy(Vertx vertx, String address) {
  return new KnotProxyVertxEBProxy(vertx, address);
 }

 static KnotProxy createProxyWithOptions(Vertx vertx, String address, DeliveryOptions deliveryOptions) {
  return new KnotProxyVertxEBProxy(vertx, address, deliveryOptions);
 }

 void process(KnotContext knotContext, Handler<AsyncResult<KnotContext>> result);
}

origin: vert-x3/vertx-service-proxy

/**
 * Test base imports are corrects.
 *
 * @author <a href="mailto:julien@julienviet.com">Julien Viet</a>
 */
@ProxyGen
@VertxGen
public interface TestBaseImportsService {

 void m();

}

origin: io.vertx/vertx-service-discovery

/**
 * @author <a href="http://escoffier.me">Clement Escoffier</a>
 */
@ProxyGen
@VertxGen
public interface HelloService {

 void hello(JsonObject name, Handler<AsyncResult<String>> resultHandler);


}

origin: vert-x3/vertx-rx

/**
 * @author <a href="http://escoffier.me">Clement Escoffier</a>
 */
@ProxyGen
@VertxGen
public interface HelloService {

 void hello(JsonObject name, Handler<AsyncResult<String>> resultHandler);


}

origin: io.vertx/vertx-rx-java2

/**
 * @author <a href="http://escoffier.me">Clement Escoffier</a>
 */
@ProxyGen
@VertxGen
public interface HelloService {

 void hello(JsonObject name, Handler<AsyncResult<String>> resultHandler);


}

origin: io.vertx/vertx-lang-ruby

/**
 * @author <a href="http://escoffier.me">Clement Escoffier</a>
 */
@ProxyGen
@VertxGen
public interface HelloService {

 void hello(JsonObject name, Handler<AsyncResult<String>> resultHandler);


}

origin: io.vertx/vertx-lang-js

/**
 * @author <a href="http://escoffier.me">Clement Escoffier</a>
 */
@ProxyGen
@VertxGen
public interface HelloService {

 void hello(JsonObject name, Handler<AsyncResult<String>> resultHandler);


}

io.vertx.codegen.annotationsProxyGen<init>

Popular methods of ProxyGen

    Popular in Java

    • Making http requests using okhttp
    • putExtra (Intent)
    • getResourceAsStream (ClassLoader)
      Returns a stream for the resource with the specified name. See #getResource(String) for a descriptio
    • setContentView (Activity)
    • ResultSet (java.sql)
      An interface for an object which represents a database table entry, returned as the result of the qu
    • LinkedHashMap (java.util)
      Hash table and linked list implementation of the Map interface, with predictable iteration order. Th
    • List (java.util)
      A List is a collection which maintains an ordering for its elements. Every element in the List has a
    • Collectors (java.util.stream)
    • ImageIO (javax.imageio)
    • Location (org.springframework.beans.factory.parsing)
      Class that models an arbitrary location in a Resource.Typically used to track the location of proble
    Codota Logo
    • Products

      Search for Java codeSearch for JavaScript codeEnterprise
    • IDE Plugins

      IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
    • Company

      About UsContact UsCareers
    • Resources

      FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
    Get Codota for your IDE now