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

org.infinispan.cdi.embedded.event.cachemanager.AbstractAdapter Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.cdi.embedded.event.cachemanager;

import javax.enterprise.event.Event;

/**
 * @author Pete Muir
 */
public abstract class AbstractAdapter {

   private final Event event;

   public AbstractAdapter(Event event) {
      this.event = event;
   }

   public void fire(T payload) {
      this.event.fire(payload);
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy