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

org.infinispan.client.hotrod.event.impl.AbstractClientEvent Maven / Gradle / Ivy

The newest version!
package org.infinispan.client.hotrod.event.impl;

import org.infinispan.client.hotrod.event.ClientEvent;

public abstract class AbstractClientEvent implements ClientEvent {
   private final byte[] listenerId;

   protected AbstractClientEvent(byte[] listenerId) {
      this.listenerId = listenerId;
   }

   public byte[] getListenerId() {
      return listenerId;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy