KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > nio > ByteBuffer > Top Examples

  • com.sleepycat.je.log.LogUtils
    This class holds convenience methods for marshalling internal JE data to and from the log.
  • org.quickserver.util.io.ByteBufferInputStream
    This is an InputStream constructed from list of ByteBuffers. This is used in non-blocking mode. @since 1.4.5 @author Akshathkumar Shetty
  • com.sleepycat.je.log.FileReader
    A FileReader is an abstract class that traverses the log files, reading in chunks of the file at a time. Concrete subclasses perform a particular action to each entry.
  • org.quickserver.util.io.ByteBufferOutputStream
    This is an OutputStream constructed from list of ByteBuffers. This is used in non-blocking mode. @since 1.4.5 @author Akshathkumar Shetty
  • com.sleepycat.je.log.LogBuffer
    DbLogBuffers hold outgoing, newly written log entries. Storage Information about what log entries are held here. The read latch serializes access to and modification of the LSN info. Buffer may be rewritten because an IOException previously occurred. Used by LogManager for the case when we hav ...
  • com.sleepycat.je.log.FileManager
    The FileManager presents the abstraction of one contiguous file. It doles out LSNs.
  • com.sleepycat.je.tree.FileSummaryLN
    A FileSummaryLN represents a Leaf Node in the UtilizationProfile database. <p>The contents of the FileSummaryLN are not fixed until the moment at which the LN is added to the log. A base summary object contains the summary last added to the log. A tracked summary object contains live summ ...
  • com.mysql.jdbc.MysqlIO
    This class is used by Connection for communicating with the MySQL server. @author Mark Matthews @version $Id: MysqlIO.java,v 1.1.2.7 2005/06/22 23:11:03 mmatthews Exp $ @see java.sql.Connection Can use compression Can use LOAD DATA Found instead of Get all column flags new more secure for > ...
  • org.jgroups.blocks.ConnectionTable1_4
    Manages incoming and outgoing TCP connections. For each outgoing message to destination P, if there is not yet a connection for P, one will be created. Subsequent outgoing messages will use this connection. For incoming messages, one server socket is created at startup. For each new incoming clie ...
  • org.quickserver.net.server.ClientHandler
    Class that handles clients for QuickServer. <p> This class is used by {@link QuickServer} to handle each new client connected. This class is responsible to handle client sockets. It can operate in both blocking mode and non-blocking mode (java nio).</p> @author Akshathkumar Shetty @aut ...
  • com.sleepycat.je.log.StatsFileReader
    The StatsFileReader generates stats about the log entries read, such as the count of each type of entry, the number of bytes, minimum and maximum sized log entry.
  • com.sun.slamd.example.Base64Encoder
    This class provides methods for encoding and decoding data using the base64 specification as defined in RFC 1521, section 5.2. Although a base64 encoder and decoder are available in the sun.misc package, they should not be used as classes in the sun.misc package are not guaranteed to exist or wor ...
Popular Tags