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

org.infinispan.counter.SyncStrongCounter Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev05
Show newest version
package org.infinispan.counter;

import org.infinispan.counter.api.StrongCounter;
import org.infinispan.counter.impl.SyncStrongCounterAdapter;

/**
 * A {@link StrongCounter} decorator that waits for the operation to complete.
 *
 * @author Pedro Ruivo
 * @see StrongCounter
 * @since 9.0
 * @deprecated since 9.2. Use {@link StrongCounter#sync()} instead. It will be removed in 10.0
 */
@Deprecated
public class SyncStrongCounter extends SyncStrongCounterAdapter {

   public SyncStrongCounter(StrongCounter counter) {
      super(counter);
   }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy