Module: SocketUtil

Included in:
Mongo::SSLSocket, Mongo::TCPSocket
Defined in:
lib/mongo/util/socket_util.rb

Overview

Copyright © 2013 10gen Inc.

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#pidObject

Returns the value of attribute pid.



17
18
19
# File 'lib/mongo/util/socket_util.rb', line 17

def pid
  @pid
end

#poolObject

Returns the value of attribute pool.



17
18
19
# File 'lib/mongo/util/socket_util.rb', line 17

def pool
  @pool
end

Instance Method Details

#checkinObject



23
24
25
# File 'lib/mongo/util/socket_util.rb', line 23

def checkin
  @pool.checkin(self) if @pool
end

#checkoutObject



19
20
21
# File 'lib/mongo/util/socket_util.rb', line 19

def checkout
  @pool.checkout if @pool
end

#closeObject



27
28
29
# File 'lib/mongo/util/socket_util.rb', line 27

def close
  @socket.close unless closed?
end

#closed?Boolean

Returns:

  • (Boolean)


31
32
33
# File 'lib/mongo/util/socket_util.rb', line 31

def closed?
  @socket.closed?
end