congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
VisibleBufferedInputStream.close
Code IndexAdd Tabnine to your IDE (free)

How to use
close
method
in
org.postgresql.core.VisibleBufferedInputStream

Best Java code snippets using org.postgresql.core.VisibleBufferedInputStream.close (Showing top 4 results out of 315)

origin: org.postgresql/postgresql

/**
 * Closes the connection.
 *
 * @throws IOException if an I/O Error occurs
 */
@Override
public void close() throws IOException {
 if (encodingWriter != null) {
  encodingWriter.close();
 }
 pg_output.close();
 pg_input.close();
 connection.close();
}
origin: postgresql/postgresql

  /**
   * Closes the connection
   *
   * @exception IOException if an I/O Error occurs
   */
  public void close() throws IOException
  {
    if (encodingWriter != null)
      encodingWriter.close();

    pg_output.close();
    pg_input.close();
    connection.close();
  }
}
origin: org.ancoron.postgresql/org.postgresql.osgi

  /**
   * Closes the connection
   *
   * @exception IOException if an I/O Error occurs
   */
  public void close() throws IOException
  {
    if (encodingWriter != null)
      encodingWriter.close();

    pg_output.close();
    pg_input.close();
    connection.close();
  }
}
origin: org.ancoron.postgresql/org.postgresql

  /**
   * Closes the connection
   *
   * @exception IOException if an I/O Error occurs
   */
  public void close() throws IOException
  {
    if (encodingWriter != null)
      encodingWriter.close();

    pg_output.close();
    pg_input.close();
    connection.close();
  }
}
org.postgresql.coreVisibleBufferedInputStreamclose

Popular methods of VisibleBufferedInputStream

  • <init>
    Creates a new buffer around the given stream.
  • available
  • compact
    Compacts the unread bytes of the buffer to the beginning of the buffer.
  • doubleBuffer
    Doubles the size of the buffer.
  • ensureBytes
    Ensures that the buffer contains at least n bytes. This method invalidates the buffer and index fiel
  • getBuffer
    Returns direct handle to the used buffer. Use the #ensureBytesto prefill required bytes the buffer a
  • getIndex
    Returns the current read position in the buffer.
  • moveBufferTo
    Moves bytes from the buffer to the begining of the destination buffer. Also sets the index and endIn
  • read
  • readMore
    Reads more bytes into the buffer.
  • scanCStringLength
    Scans the length of the next null terminated string (C-style string) from the stream.
  • skip
  • scanCStringLength,
  • skip,
  • peek

Popular in Java

  • Making http post requests using okhttp
  • scheduleAtFixedRate (Timer)
  • onRequestPermissionsResult (Fragment)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • Reference (javax.naming)
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • Best IntelliJ 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