All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.server.resp.meta.MetadataRepository Maven / Gradle / Ivy

There is a newer version: 15.1.4.Final
Show newest version
package org.infinispan.server.resp.meta;

/**
 * Stores RESP related metadata and statistics.
 *
 * @author José Bolina
 * @since 15.0
 */
public final class MetadataRepository {

   private final ClientMetadata client;

   public MetadataRepository() {
      this.client = new ClientMetadata();
   }

   /**
    * Acquire the handler to read and writes metadata for client connections.
    *
    * @return The handler to manage client metadata.
    */
   public ClientMetadata client() {
      return client;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy