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

org.infinispan.remoting.responses.UnsureResponse Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.remoting.responses;

import org.infinispan.commons.marshall.AbstractExternalizer;
import org.infinispan.commons.util.Util;
import org.infinispan.marshall.core.Ids;

import java.io.ObjectOutput;
import java.io.IOException;
import java.io.ObjectInput;
import java.util.Set;

/**
 * An unsure response - used with Dist - essentially asks the caller to check the next response from the next node since
 * the sender is in a state of flux (probably in the middle of rebalancing)
 *
 * @author Manik Surtani
 * @since 4.0
 */
public class UnsureResponse extends ValidResponse {
   public static final UnsureResponse INSTANCE = new UnsureResponse();
   @Override
   public boolean isSuccessful() {
      return false;
   }

   public static class Externalizer extends AbstractExternalizer {
      @Override
      public void writeObject(ObjectOutput output, UnsureResponse subject) throws IOException {
      }

      @Override
      public UnsureResponse readObject(ObjectInput input) throws IOException, ClassNotFoundException {
         return INSTANCE;
      }

      @Override
      public Integer getId() {
         return Ids.UNSURE_RESPONSE;
      }

      @Override
      public Set> getTypeClasses() {
         return Util.>asSet(UnsureResponse.class);
      }
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy