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

org.infinispan.commands.InitializableCommand Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
package org.infinispan.commands;

import org.infinispan.factories.ComponentRegistry;

/**
 * An interface to be implemented by Commands which require an intialized state after deserialization.
 *
 * @author Ryan Emerson
 * @since 10.0
 * @deprecated since 11.0, please implement {@link ReplicableCommand#invokeAsync(ComponentRegistry)} instead
 */
@Deprecated(forRemoval=true, since = "11.0")
public interface InitializableCommand {

   void init(ComponentRegistry componentRegistry, boolean isRemote);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy