Codota Logo
ProtoSchemaBuilder.build
Code IndexAdd Codota to your IDE (free)

How to use
build
method
in
org.infinispan.protostream.annotations.ProtoSchemaBuilder

Best Java code snippets using org.infinispan.protostream.annotations.ProtoSchemaBuilder.build (Showing top 8 results out of 315)

  • Common ways to obtain ProtoSchemaBuilder
private void myMethod () {
ProtoSchemaBuilder p =
  • Codota Iconnew ProtoSchemaBuilder()
  • Smart code suggestions by Codota
}
origin: org.infinispan.protostream/protostream

String schemaFile = protoSchemaBuilder.build(ctx);
origin: org.uberfire/uberfire-metadata-backend-infinispan

private void addProtobufClass(SerializationContext serializationContext,
               String protoName,
               Class<?> clazz) {
  try {
    ProtoSchemaBuilder protoSchemaBuilder = new ProtoSchemaBuilder();
    protoSchemaBuilder.fileName(protoName);
    protoSchemaBuilder.addClass(clazz);
    String schemaString = protoSchemaBuilder.build(serializationContext);
    this.getProtobufCache().put(protoName,
                  schemaString);
  } catch (IOException e) {
    throw new InfinispanException("Can't add protobuf class <" + protoName + "> to cache",
                   e);
  }
}
origin: kiegroup/appformer

private void addProtobufClass(SerializationContext serializationContext,
               String protoName,
               Class<?> clazz) {
  try {
    ProtoSchemaBuilder protoSchemaBuilder = new ProtoSchemaBuilder();
    protoSchemaBuilder.fileName(protoName);
    protoSchemaBuilder.addClass(clazz);
    String schemaString = protoSchemaBuilder.build(serializationContext);
    this.getProtobufCache().put(protoName,
                  schemaString);
  } catch (IOException e) {
    throw new InfinispanException("Can't add protobuf class <" + protoName + "> to cache",
                   e);
  }
}
origin: org.infinispan/infinispan-compatibility-mode-it

@Override
protected RemoteCacheManager createRemoteCacheManager() throws IOException {
 RemoteCacheManager remoteCacheManager = new RemoteCacheManager(new org.infinispan.client.hotrod.configuration.ConfigurationBuilder()
    .addServer().host("localhost").port(hotRodServer.getPort())
    .marshaller(new ProtoStreamMarshaller())
    .build());
 //initialize client-side serialization context
 SerializationContext serializationContext = ProtoStreamMarshaller.getSerializationContext(remoteCacheManager);
 ProtoSchemaBuilder protoSchemaBuilder = new ProtoSchemaBuilder();
 String protoFile = protoSchemaBuilder.fileName("crypto.proto")
    .addClass(CryptoCurrency.class)
    .build(serializationContext);
 //initialize server-side serialization context via rest endpoint
 String metadataCacheEndpoint = String.format("http://localhost:%s/rest/%s", restServer.getPort(), PROTOBUF_METADATA_CACHE_NAME);
 EntityEnclosingMethod put = new PutMethod(metadataCacheEndpoint + "/crypto.proto");
 put.setRequestEntity(new StringRequestEntity(protoFile, "text/plain", "UTF-8"));
 restClient.executeMethod(put);
 assertEquals(put.getStatusCode(), HttpStatus.SC_OK);
 return remoteCacheManager;
}
origin: org.infinispan.server/infinispan-server-testsuite

@Before
public void before() throws IOException {
  ConfigurationBuilder clientBuilder = new ConfigurationBuilder();
  clientBuilder.addServer()
      .host(server.getHotrodEndpoint().getInetAddress().getHostName())
      .port(server.getHotrodEndpoint().getPort())
      .marshaller(new ProtoStreamMarshaller());
  remoteCacheManager = new RemoteCacheManager(clientBuilder.build());
  SerializationContext serializationContext = ProtoStreamMarshaller.getSerializationContext(remoteCacheManager);
  ProtoSchemaBuilder protoSchemaBuilder = new ProtoSchemaBuilder();
  String protoSchema = protoSchemaBuilder.fileName("transaction.proto")
      .addClass(Transaction.class)
      .build(serializationContext);
  RemoteCache<String, String> metadataCache = remoteCacheManager.getCache(ProtobufMetadataManagerConstants.PROTOBUF_METADATA_CACHE_NAME);
  metadataCache.put("transaction.proto", protoSchema);
}
origin: org.infinispan.server/infinispan-server-testsuite

String testSchemaFile = protoSchemaBuilder.fileName("test.proto")
   .addClass(Note.class)
   .build(ctx);
origin: org.infinispan.server/infinispan-server-testsuite

@Before
public void setUp() throws Exception {
 rcmFactory = new RemoteCacheManagerFactory();
 ConfigurationBuilder clientBuilder = new ConfigurationBuilder();
 clientBuilder.addServer()
    .host(server.getHotrodEndpoint().getInetAddress().getHostName())
    .port(server.getHotrodEndpoint().getPort())
    .marshaller(new ProtoStreamMarshaller());
 remoteCacheManager = rcmFactory.createManager(clientBuilder);
 remoteCache = remoteCacheManager.getCache(cacheName);
 //initialize client-side serialization context
 SerializationContext serializationContext = ProtoStreamMarshaller.getSerializationContext(remoteCacheManager);
 ProtoSchemaBuilder protoSchemaBuilder = new ProtoSchemaBuilder();
 String protoFile = protoSchemaBuilder.fileName("test.proto")
    .addClass(AnnotatedUser.class)
    .build(serializationContext);
 //initialize server-side serialization context
 RemoteCache<String, String> metadataCache = remoteCacheManager.getCache(ProtobufMetadataManagerConstants.PROTOBUF_METADATA_CACHE_NAME);
 metadataCache.put("test.proto", protoFile);
 assertFalse(metadataCache.containsKey(ProtobufMetadataManagerConstants.ERRORS_KEY_SUFFIX));
}
origin: org.infinispan/infinispan-compatibility-mode-it

@Override
protected RemoteCacheManager createRemoteCacheManager() throws IOException {
 RemoteCacheManager remoteCacheManager = new RemoteCacheManager(new org.infinispan.client.hotrod.configuration.ConfigurationBuilder()
    .addServer().host("localhost").port(hotRodServer.getPort())
    .marshaller(new ProtoStreamMarshaller())
    .build());
 //initialize client-side serialization context
 SerializationContext serializationContext = ProtoStreamMarshaller.getSerializationContext(remoteCacheManager);
 ProtoSchemaBuilder protoSchemaBuilder = new ProtoSchemaBuilder();
 String protoFile = protoSchemaBuilder.fileName("crypto.proto")
    .addClass(CryptoCurrency.class)
    .build(serializationContext);
 //initialize server-side serialization context
 RemoteCache<String, String> metadataCache = remoteCacheManager.getCache(PROTOBUF_METADATA_CACHE_NAME);
 metadataCache.put("crypto.proto", protoFile);
 return remoteCacheManager;
}
org.infinispan.protostream.annotationsProtoSchemaBuilderbuild

Javadoc

Builds the Protocol Buffers schema file defining the types and generates marshaller implementations for these types and registers everything with the given SerializationContext.

Popular methods of ProtoSchemaBuilder

  • <init>
  • addClass
    Add a @ProtoXyz annotated class to be analyzed. Proto schema and marshaller will be generated for it
  • fileName
    Set the name of the Protobuf schema file to generate. This is mandatory. The resulting file will be
  • packageName
    Set the name of the Protobuf package to generate. This is optional.
  • parseCommandLine

Popular in Java

  • Finding current android device location
  • onCreateOptionsMenu (Activity)
  • orElseThrow (Optional)
  • getContentResolver (Context)
  • String (java.lang)
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • Permission (java.security)
    Abstract class for representing access to a system resource. All permissions have a name (whose inte
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
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