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

org.infinispan.client.hotrod.impl.operations.RoutingObjectOperation Maven / Gradle / Ivy

There is a newer version: 9.3.1.Final
Show newest version
package org.infinispan.client.hotrod.impl.operations;

public class RoutingObjectOperation extends DelegatingHotRodOperation {
   private final Object routingObject;
   public RoutingObjectOperation(HotRodOperation delegate, Object routingObject) {
      super(delegate);
      this.routingObject = routingObject;
   }

   @Override
   public Object getRoutingObject() {
      return routingObject;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy