congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
ConnectionTable$PendingConnection
Code IndexAdd Tabnine to your IDE (free)

How to use
ConnectionTable$PendingConnection
in
com.gemstone.gemfire.internal.tcp

Best Java code snippets using com.gemstone.gemfire.internal.tcp.ConnectionTable$PendingConnection (Showing top 8 results out of 315)

origin: org.apache.geode/gemfire-core

pc = new PendingConnection(preserveOrder, id);
m.put(id, pc);
result = ((PendingConnection)mEntry).waitForConnect(
  this.owner.getMembershipManager(), startTime,
  ackTimeout, ackSATimeout);
origin: org.apache.geode/gemfire-core

  pc.notifyWaiters(null);
pc.notifyWaiters(con);
if (con != null && logger.isDebugEnabled()) {
 logger.debug("handleNewPendingConnection {} myAddr={} theirAddr={}", con, getConduit().getLocalAddress(), con.remoteAddr);
origin: io.snappydata/gemfire-core

  pc.notifyWaiters(null);
pc.notifyWaiters(con);
if (con != null && getLogger().fineEnabled()) {
 String msg = "handleNewPendingConnection " + con + " myAddr="
origin: io.snappydata/gemfire-core

notifyWaiters(null);
break;
notifyWaiters((Connection)e);
break;
return ((PendingConnection)e).waitForConnect(mgr, startTime,
  ackTimeout, ackSATimeout);
origin: org.apache.geode/gemfire-core

notifyWaiters(null);
break;
notifyWaiters((Connection)e);
break;
return ((PendingConnection)e).waitForConnect(mgr, startTime,
  ackTimeout, ackSATimeout);
origin: io.snappydata/gemfire-core

pc = new PendingConnection(preserveOrder, id);
result = ((PendingConnection)mEntry).waitForConnect(
  this.owner.getMembershipManager(), startTime,
  ackTimeout, ackSATimeout);
origin: org.apache.geode/gemfire-core

private static void closeCon(String reason, Object c, boolean beingSick) {
 if (c == null) {
  return;
 }
 if (c instanceof Connection) {
  ((Connection)c).closePartialConnect(reason, beingSick); // fix for bug 31666
 } else {
  ((PendingConnection)c).notifyWaiters(null);
 }
}
origin: io.snappydata/gemfire-core

private static void closeCon(String reason, Object c, boolean beingSick) {
 if (c == null) {
  return;
 }
 if (c instanceof Connection) {
  ((Connection)c).closePartialConnect(reason, beingSick); // fix for bug 31666
 } else {
  ((PendingConnection)c).notifyWaiters(null);
 }
}
com.gemstone.gemfire.internal.tcpConnectionTable$PendingConnection

Most used methods

  • <init>
  • notifyWaiters
    Synchronously set the connection and notify waiters that we are ready.
  • waitForConnect
    Wait for a connection

Popular in Java

  • Reading from database using SQL prepared statement
  • findViewById (Activity)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • getSystemService (Context)
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • Table (org.hibernate.mapping)
    A relational table
  • Top plugins for WebStorm
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