Package org.jruby.pg.internal.messages

Examples of org.jruby.pg.internal.messages.Startup


      }

      // send startup message
      socket.configureBlocking(false);
      state = ConnectionState.SendingStartup;
      currentOutBuffer = new Startup(user, dbname, options).toBytes();
      currentInMessage = new ProtocolMessageBuffer();
    } catch (IOException e) {
      state = ConnectionState.Failed;
      throw e;
    }
View Full Code Here

TOP

Related Classes of org.jruby.pg.internal.messages.Startup

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.