![JAR search and dependency download from the Maven repository](/logo.png)
org.infinispan.server.resp.meta.MetadataRepository Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinispan-server-resp Show documentation
Show all versions of infinispan-server-resp Show documentation
Infinispan Resp Protocol Server
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