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

io.hyperfoil.hotrod.api.HotRodRemoteCachePool Maven / Gradle / Ivy

There is a newer version: 0.26
Show newest version
package io.hyperfoil.hotrod.api;

import io.hyperfoil.api.session.Session;
import io.hyperfoil.hotrod.connection.HotRodRemoteCachePoolImpl;

public interface HotRodRemoteCachePool extends Session.Resource {

   Session.ResourceKey KEY = new Session.ResourceKey<>() {};

   static HotRodRemoteCachePool get(Session session) {
      return session.getResource(KEY);
   }

   void start();

   void shutdown();

   HotRodRemoteCachePoolImpl.RemoteCacheWithoutToString getRemoteCache(String cacheName);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy