Class VertxMaintenanceGrpc.MaintenanceVertxImplBase

  • All Implemented Interfaces:
    io.grpc.BindableService
    Enclosing class:
    VertxMaintenanceGrpc

    public abstract static class VertxMaintenanceGrpc.MaintenanceVertxImplBase
    extends java.lang.Object
    implements io.grpc.BindableService
    • Constructor Detail

      • MaintenanceVertxImplBase

        public MaintenanceVertxImplBase()
    • Method Detail

      • withCompression

        public VertxMaintenanceGrpc.MaintenanceVertxImplBase withCompression​(java.lang.String compression)
        Set whether the server will try to use a compressed response.
        Parameters:
        compression - the compression, e.g gzip
      • alarm

        public io.vertx.core.Future<AlarmResponse> alarm​(AlarmRequest request)
          Range gets the keys in the range from the key-value store.
         
      • status

        public io.vertx.core.Future<StatusResponse> status​(StatusRequest request)
          Put puts the given key into the key-value store.
          A put request increments the revision of the key-value store
          and generates one event in the event history.
         
      • defragment

        public io.vertx.core.Future<DefragmentResponse> defragment​(DefragmentRequest request)
          DeleteRange deletes the given range from the key-value store.
          A delete request increments the revision of the key-value store
          and generates a delete event in the event history for every deleted key.
         
      • hash

        public io.vertx.core.Future<HashResponse> hash​(HashRequest request)
          Txn processes multiple requests in a single transaction.
          A txn request increments the revision of the key-value store
          and generates events with the same revision for every completed request.
          It is not allowed to modify the same key several times within one txn.
         
      • hashKV

        public io.vertx.core.Future<HashKVResponse> hashKV​(HashKVRequest request)
          Compact compacts the event history in the etcd key-value store. The key-value
          store should be periodically compacted or the event history will continue to grow
          indefinitely.
         
      • moveLeader

        public io.vertx.core.Future<MoveLeaderResponse> moveLeader​(MoveLeaderRequest request)
          MoveLeader requests current leader node to transfer its leadership to transferee.
         
      • snapshot

        public void snapshot​(SnapshotRequest request,
                             io.vertx.core.streams.WriteStream<SnapshotResponse> response)
          Snapshot sends a snapshot of the entire backend from a member over a stream to a client.
         
      • bindService

        public final io.grpc.ServerServiceDefinition bindService()
        Specified by:
        bindService in interface io.grpc.BindableService