Tabnine Logo
QueryExecutorImpl.sendCloseStatement
Code IndexAdd Tabnine to your IDE (free)

How to use
sendCloseStatement
method
in
org.postgresql.core.v3.QueryExecutorImpl

Best Java code snippets using org.postgresql.core.v3.QueryExecutorImpl.sendCloseStatement (Showing top 4 results out of 315)

origin: org.postgresql/postgresql

private void processDeadParsedQueries() throws IOException {
 Reference<? extends SimpleQuery> deadQuery;
 while ((deadQuery = parsedQueryCleanupQueue.poll()) != null) {
  String statementName = parsedQueryMap.remove(deadQuery);
  sendCloseStatement(statementName);
  deadQuery.clear();
 }
}
origin: postgresql/postgresql

private void processDeadParsedQueries() throws IOException {
  PhantomReference deadQuery;
  while ((deadQuery = (PhantomReference)parsedQueryCleanupQueue.poll()) != null)
  {
    String statementName = (String)parsedQueryMap.remove(deadQuery);
    sendCloseStatement(statementName);
    deadQuery.clear();
  }
}
origin: org.ancoron.postgresql/org.postgresql.osgi

private void processDeadParsedQueries() throws IOException {
  PhantomReference deadQuery;
  while ((deadQuery = (PhantomReference)parsedQueryCleanupQueue.poll()) != null)
  {
    String statementName = (String)parsedQueryMap.remove(deadQuery);
    sendCloseStatement(statementName);
    deadQuery.clear();
  }
}
origin: org.ancoron.postgresql/org.postgresql

private void processDeadParsedQueries() throws IOException {
  PhantomReference deadQuery;
  while ((deadQuery = (PhantomReference)parsedQueryCleanupQueue.poll()) != null)
  {
    String statementName = (String)parsedQueryMap.remove(deadQuery);
    sendCloseStatement(statementName);
    deadQuery.clear();
  }
}
org.postgresql.core.v3QueryExecutorImplsendCloseStatement

Popular methods of QueryExecutorImpl

  • <init>
  • cancelCopy
    Finishes a copy operation and unlocks connection discarding any exchanged data.
  • doSubprotocolBegin
  • endCopy
    Finishes writing to copy and unlocks connection.
  • flushCopy
  • hasLock
  • initCopy
    Locks connection and calls initializer for a new CopyOperation Called via startCopy -> processCopyRe
  • interpretCommandStatus
  • lock
    Obtain lock over this connection for given object, blocking to wait if necessary.
  • processCopyResults
    Handles copy sub protocol responses from server. Unlocks at end of sub protocol, so operations on pg
  • processDeadParsedQueries
  • processDeadPortals
  • processDeadParsedQueries,
  • processDeadPortals,
  • processResults,
  • readFromCopy,
  • receiveAsyncNotify,
  • receiveCommandStatus,
  • receiveErrorResponse,
  • receiveFastpathResult,
  • receiveFields,
  • receiveNoticeResponse

Popular in Java

  • Updating database using SQL prepared statement
  • getSystemService (Context)
  • setRequestProperty (URLConnection)
  • setScale (BigDecimal)
  • VirtualMachine (com.sun.tools.attach)
    A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement. A servlet is a small Java program that runs within
  • JTextField (javax.swing)
  • Best plugins for Eclipse
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