![JAR search and dependency download from the Maven repository](/logo.png)
org.infinispan.hotrod.event.impl.AbstractClientEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinispan-hotrod-jakarta Show documentation
Show all versions of infinispan-hotrod-jakarta Show documentation
Infinispan Hot Rod Client Jakarta EE
package org.infinispan.hotrod.event.impl;
import org.infinispan.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 - 2025 Weber Informatics LLC | Privacy Policy