congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
PartitionManagementService.getPrimitiveTypes
Code IndexAdd Tabnine to your IDE (free)

How to use
getPrimitiveTypes
method
in
io.atomix.primitive.partition.PartitionManagementService

Best Java code snippets using io.atomix.primitive.partition.PartitionManagementService.getPrimitiveTypes (Showing top 2 results out of 315)

origin: atomix/atomix

/**
 * Creates a Raft server.
 */
protected RaftPartitionServer createServer(PartitionManagementService managementService) {
 return new RaftPartitionServer(
   this,
   config,
   managementService.getMembershipService().getLocalMember().id(),
   managementService.getMembershipService(),
   managementService.getMessagingService(),
   managementService.getPrimitiveTypes(),
   threadContextFactory);
}
origin: atomix/atomix

private PrimaryBackupServer buildServer() {
 return PrimaryBackupServer.builder()
   .withServerName(partition.name())
   .withMembershipService(managementService.getMembershipService())
   .withMemberGroupProvider(memberGroupProvider)
   .withProtocol(new PrimaryBackupServerCommunicator(
     partition.name(),
     Serializer.using(PrimaryBackupNamespaces.PROTOCOL),
     managementService.getMessagingService()))
   .withPrimaryElection(managementService.getElectionService().getElectionFor(partition.id()))
   .withPrimitiveTypes(managementService.getPrimitiveTypes())
   .withThreadContextFactory(threadFactory)
   .build();
}
io.atomix.primitive.partitionPartitionManagementServicegetPrimitiveTypes

Javadoc

Returns the primitive type registry.

Popular methods of PartitionManagementService

  • getMembershipService
  • getMessagingService
  • getElectionService
  • getSessionIdService

Popular in Java

  • Reactive rest calls using spring rest template
  • setScale (BigDecimal)
  • findViewById (Activity)
  • putExtra (Intent)
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • LinkedHashMap (java.util)
    LinkedHashMap is an implementation of Map that guarantees iteration order. All optional operations a
  • Manifest (java.util.jar)
    The Manifest class is used to obtain attribute information for a JarFile and its entries.
  • BoxLayout (javax.swing)
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • CodeWhisperer alternatives
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now