Method: Words::TokyoWordnetConnection#close!
- Defined in:
- lib/wordnet_connectors/tokyo_wordnet_connection.rb
#close! ⇒ Object
Causes the current connection to wordnet to be closed.
74 75 76 77 78 79 80 81 82 |
# File 'lib/wordnet_connectors/tokyo_wordnet_connection.rb', line 74 def close! if connected? @connection.close @connected = false end return nil end |