Tabnine Logo
FLUSH.startFlush
Code IndexAdd Tabnine to your IDE (free)

How to use
startFlush
method
in
org.jgroups.protocols.pbcast.FLUSH

Best Java code snippets using org.jgroups.protocols.pbcast.FLUSH.startFlush (Showing top 13 results out of 315)

origin: wildfly/wildfly

@SuppressWarnings("unchecked")
private void startFlush(Event evt) {
  List<Address> flushParticipants =evt.getArg();
  startFlush(flushParticipants);
}
origin: wildfly/wildfly

@ManagedOperation(description = "Request cluster flush")
public void startFlush() {
  startFlush(new Event(Event.SUSPEND));
}
origin: wildfly/wildfly

startFlush(evt);
return null;
origin: wildfly/wildfly

startFlush(evt);
return null;
origin: org.jgroups/com.springsource.org.jgroups

public boolean startFlush(long timeout) {
  return p.startFlush(timeout);
}
origin: org.jgroups/com.springsource.org.jgroups

public boolean startFlush(long timeout) {		
  Map atts = new HashMap();	           	
   atts.put("timeout", new Long(timeout));
  return startFlush(new Event(Event.SUSPEND,atts), 3, false);
}
origin: org.jboss.eap/wildfly-client-all

@SuppressWarnings("unchecked")
private void startFlush(Event evt) {
  List<Address> flushParticipants =evt.getArg();
  startFlush(flushParticipants);
}
origin: org.jboss.eap/wildfly-client-all

@ManagedOperation(description = "Request cluster flush")
public void startFlush() {
  startFlush(new Event(Event.SUSPEND));
}
origin: org.jgroups/com.springsource.org.jgroups

boolean shouldRetry = !(succeededWhileWeSlept !=null && succeededWhileWeSlept.booleanValue());
if(shouldRetry)
  successfulFlush = startFlush(evt, --numberOfAttempts, true);
origin: org.jboss.eap/wildfly-client-all

startFlush(evt);
return null;
origin: org.jgroups/com.springsource.org.jgroups

public Object down(Event evt) {
  switch (evt.getType()) {
  case Event.MSG:
    Message msg = (Message) evt.getArg();
    FlushHeader fh = (FlushHeader) msg.getHeader(getName());
    if (fh != null && fh.type == FlushHeader.FLUSH_BYPASS) {
      return down_prot.down(evt);
    } else {
      blockMessageDuringFlush();
    }
    break;
  case Event.GET_STATE:
    blockMessageDuringFlush();
    break;
  case Event.CONNECT:
    sendBlockUpToChannel();
    break;
  case Event.SUSPEND:
    return startFlush(evt, 3, false);
  case Event.RESUME:
    onResume();
    return null;
  }
  return down_prot.down(evt);
}
origin: org.jboss.eap/wildfly-client-all

startFlush(evt);
return null;
origin: org.jgroups/com.springsource.org.jgroups

return startFlush(evt, 3, false);
org.jgroups.protocols.pbcastFLUSHstartFlush

Popular methods of FLUSH

  • blockMessageDuringFlush
  • currentViewId
  • down
  • findHighestSequences
  • handleFlushReconcile
  • handleStartFlush
  • hasVirtualSynchronyGaps
  • isCurrentFlushMessage
  • onFlushCompleted
  • onFlushReconcileOK
  • onResume
  • onStartFlush
  • onResume,
  • onStartFlush,
  • onStopFlush,
  • onSuspect,
  • onSuspend,
  • onViewChange,
  • rejectFlush,
  • sendBlockUpToChannel,
  • handleConnect

Popular in Java

  • Creating JSON documents from java classes using gson
  • scheduleAtFixedRate (Timer)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getApplicationContext (Context)
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now