Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.mysql.jdbc
Class NamedPipeSocketFactory  view NamedPipeSocketFactory download NamedPipeSocketFactory.java

java.lang.Object
  extended bycom.mysql.jdbc.NamedPipeSocketFactory
All Implemented Interfaces:
SocketFactory

public class NamedPipeSocketFactory
extends java.lang.Object
implements SocketFactory

A socket factory for named pipes (on Windows)


Nested Class Summary
(package private)  class NamedPipeSocketFactory.NamedPipeSocket
          A socket that encapsulates named pipes on Windows
(package private)  class NamedPipeSocketFactory.RandomAccessFileInputStream
          Enables OutputStream-type functionality for a RandomAccessFile
(package private)  class NamedPipeSocketFactory.RandomAccessFileOutputStream
          Enables OutputStream-type functionality for a RandomAccessFile
 
Field Summary
private static java.lang.String NAMED_PIPE_PROP_NAME
           
private  java.net.Socket namedPipeSocket
           
 
Constructor Summary
NamedPipeSocketFactory()
          Constructor for NamedPipeSocketFactory.
 
Method Summary
 java.net.Socket afterHandshake()
          Called by the driver after issuing the MySQL protocol handshake and reading the results of the handshake.
 java.net.Socket beforeHandshake()
          Called by the driver before issuing the MySQL protocol handshake.
 java.net.Socket connect(java.lang.String host, int portNumber, java.util.Properties props)
          Creates a new socket using the given properties.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

NAMED_PIPE_PROP_NAME

private static final java.lang.String NAMED_PIPE_PROP_NAME
See Also:
Constant Field Values

namedPipeSocket

private java.net.Socket namedPipeSocket
Constructor Detail

NamedPipeSocketFactory

public NamedPipeSocketFactory()
Constructor for NamedPipeSocketFactory.

Method Detail

afterHandshake

public java.net.Socket afterHandshake()
                               throws java.net.SocketException,
                                      java.io.IOException
Description copied from interface: SocketFactory
Called by the driver after issuing the MySQL protocol handshake and reading the results of the handshake.

Specified by:
afterHandshake in interface SocketFactory

beforeHandshake

public java.net.Socket beforeHandshake()
                                throws java.net.SocketException,
                                       java.io.IOException
Description copied from interface: SocketFactory
Called by the driver before issuing the MySQL protocol handshake. Should return the socket instance that should be used during the handshake.

Specified by:
beforeHandshake in interface SocketFactory

connect

public java.net.Socket connect(java.lang.String host,
                               int portNumber,
                               java.util.Properties props)
                        throws java.net.SocketException,
                               java.io.IOException
Description copied from interface: SocketFactory
Creates a new socket using the given properties. Properties are parsed by the driver from the URL. All properties other than sensitive ones (user and password) are passed to this method. The driver will instantiate the socket factory with the class name given in the property "socketFactory", where the standard is com.mysql.jdbc.StandardSocketFactory Implementing classes are responsible for handling synchronization of this method (if needed).

Specified by:
connect in interface SocketFactory