Tabnine Logo
STABLE.resetDigest
Code IndexAdd Tabnine to your IDE (free)

How to use
resetDigest
method
in
org.jgroups.protocols.pbcast.STABLE

Best Java code snippets using org.jgroups.protocols.pbcast.STABLE.resetDigest (Showing top 12 results out of 315)

origin: wildfly/wildfly

protected void handleViewChange(View v) {
  lock.lock();
  try {
    this.view=v;
    coordinator=v.getCoord();
    resetDigest();
    if(!initialized)
      initialized=true;
  }
  finally {
    lock.unlock();
  }
}
origin: wildfly/wildfly

protected void resume() {
  lock.lock();
  try {
    resetDigest(); // start from scratch
    suspended=false;
  }
  finally {
    lock.unlock();
  }
  log.debug("resuming message garbage collection");
  stopResumeTask();
}

origin: wildfly/wildfly

resetDigest();
origin: wildfly/wildfly

resetDigest();        // sets digest
origin: org.jboss.eap/wildfly-client-all

protected void handleViewChange(View v) {
  lock.lock();
  try {
    this.view=v;
    coordinator=v.getCoord();
    resetDigest();
    if(!initialized)
      initialized=true;
  }
  finally {
    lock.unlock();
  }
}
origin: org.jgroups/com.springsource.org.jgroups

private void resume() {
  lock.lock();
  try {
    resetDigest(); // start from scratch
    suspended=false;
  }
  finally {
    lock.unlock();
  }
  if(log.isDebugEnabled())
    log.debug("resuming message garbage collection");
  stopResumeTask();
}
origin: org.jgroups/com.springsource.org.jgroups

private void handleViewChange(View v) {
  Vector<Address> tmp=v.getMembers();
  synchronized(mbrs) {
    mbrs.clear();
    mbrs.addAll(tmp);
  }
  lock.lock();
  try {
    resetDigest();
    if(!initialized)
      initialized=true;
  }
  finally {
    lock.unlock();
  }
}
origin: org.jboss.eap/wildfly-client-all

protected void resume() {
  lock.lock();
  try {
    resetDigest(); // start from scratch
    suspended=false;
  }
  finally {
    lock.unlock();
  }
  log.debug("resuming message garbage collection");
  stopResumeTask();
}

origin: org.jgroups/com.springsource.org.jgroups

        this.digest + "): ignoring digest and re-initializing own digest");
  resetDigest();
  return;
resetDigest();
origin: org.jgroups/com.springsource.org.jgroups

resetDigest();
return false;
origin: org.jboss.eap/wildfly-client-all

resetDigest();
origin: org.jboss.eap/wildfly-client-all

resetDigest();        // sets digest
org.jgroups.protocols.pbcastSTABLEresetDigest

Popular methods of STABLE

  • addVote
    Adds mbr to votes and returns true if we have all the votes, otherwise false.
  • allVotesReceived
    Votes is already locked and guaranteed to be non-null
  • getDigest
  • handleRegularMessage
  • handleStabilityMessage
  • handleStableMessage
    Digest d contains (a) the highest seqnos deliverable for each sender and (b) the highest seqnosseen
  • handleViewChange
  • resume
  • sendStabilityMessage
    Schedules a stability message to be mcast after a random number of milliseconds (range [1-stability_
  • sendStableMessage
    Broadcasts a STABLE message of the current digest to all members (or the coordinator only). The mess
  • startResumeTask
  • startStabilityTask
  • startResumeTask,
  • startStabilityTask,
  • startStableTask,
  • stopResumeTask,
  • stopStabilityTask,
  • stopStableTask,
  • suspend,
  • updateLocalDigest,
  • <init>

Popular in Java

  • Making http requests using okhttp
  • getSupportFragmentManager (FragmentActivity)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • getExternalFilesDir (Context)
  • Component (java.awt)
    A component is an object having a graphical representation that can be displayed on the screen and t
  • Selector (java.nio.channels)
    A controller for the selection of SelectableChannel objects. Selectable channels can be registered w
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • Time (java.sql)
    Java representation of an SQL TIME value. Provides utilities to format and parse the time's represen
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • JOptionPane (javax.swing)
  • Top Sublime Text plugins
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