org.jboss.ejb.client.ClusterAffinityInterest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jboss-ejb-client Show documentation
Show all versions of jboss-ejb-client Show documentation
Client library for EJB applications working against Wildfly - Jakarta EE Variant
package org.jboss.ejb.client;
/**
* A callback interested in a cluster affinity.
*
* @author Jason T. Greene
*/
interface ClusterAffinityInterest {
AttachmentKey KEY = new AttachmentKey<>();
void notifyAssignment(ClusterAffinity affinity);
}