Method: Gem::Net::HTTP#lock
- Defined in:
- lib/rubygems/vendor/net-http/lib/net/http.rb
#lock(path, body, initheader = nil) ⇒ Object
Sends a LOCK request to the server; returns an instance of a subclass of Gem::Net::HTTPResponse.
The request is based on the Gem::Net::HTTP::Lock object created from string path
, string body
, and initial headers hash initheader
.
data = '{"userId": 1, "id": 1, "title": "delectus aut autem", "completed": false}'
http = Gem::Net::HTTP.new(hostname)
http.lock('/todos/1', data)
2121 2122 2123 |
# File 'lib/rubygems/vendor/net-http/lib/net/http.rb', line 2121 def lock(path, body, initheader = nil) request(Lock.new(path, initheader), body) end |