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

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

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

origin: wildfly/wildfly

private void sendUnBlockUpToChannel() {
  sentBlock.set(false);
  this.up(new Event(Event.UNBLOCK));
}
origin: wildfly/wildfly

private void sendBlockUpToChannel() {
  this.up(new Event(Event.BLOCK));
  sentUnblock.set(false);
}
origin: wildfly/wildfly

public void up(MessageBatch batch) {
  if(bypass) {
    up_prot.up(batch);
    return;
  }
  for(Message msg: batch) {
    if(msg.getHeader(id) != null) {
      batch.remove(msg);
      up(msg); // let the existing code handle this
    }
    else {
      if(msg.getDest() != null) { // skip unicast messages, process them right away
        batch.remove(msg);
        up_prot.up(msg);
      }
    }
  }
  if(!batch.isEmpty())
    up_prot.up(batch);
}
origin: org.jboss.eap/wildfly-client-all

private void sendBlockUpToChannel() {
  this.up(new Event(Event.BLOCK));
  sentUnblock.set(false);
}
origin: org.jboss.eap/wildfly-client-all

private void sendUnBlockUpToChannel() {
  sentBlock.set(false);
  this.up(new Event(Event.UNBLOCK));
}
origin: org.jboss.eap/wildfly-client-all

public void up(MessageBatch batch) {
  if(bypass) {
    up_prot.up(batch);
    return;
  }
  for(Message msg: batch) {
    if(msg.getHeader(id) != null) {
      batch.remove(msg);
      up(msg); // let the existing code handle this
    }
    else {
      if(msg.getDest() != null) { // skip unicast messages, process them right away
        batch.remove(msg);
        up_prot.up(msg);
      }
    }
  }
  if(!batch.isEmpty())
    up_prot.up(batch);
}
org.jgroups.protocols.pbcastFLUSHup

Popular methods of FLUSH

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

Popular in Java

  • Reading from database using SQL prepared statement
  • compareTo (BigDecimal)
  • getSupportFragmentManager (FragmentActivity)
  • getContentResolver (Context)
  • MessageDigest (java.security)
    Uses a one-way hash function to turn an arbitrary number of bytes into a fixed-length byte sequence.
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • Hashtable (java.util)
    A plug-in replacement for JDK1.5 java.util.Hashtable. This version is based on org.cliffc.high_scale
  • NoSuchElementException (java.util)
    Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
  • ImageIO (javax.imageio)
  • 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