Method: Net::HTTP#lock

Defined in:
lib/net/http.rb

#lock(path, body, initheader = nil) ⇒ Object

Sends a LOCK request to the server; returns an instance of a subclass of Net::HTTPResponse.

The request is based on the 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 = Net::HTTP.new(hostname)
http.lock('/todos/1', data)


2043
2044
2045
# File 'lib/net/http.rb', line 2043

def lock(path, body, initheader = nil)
  request(Lock.new(path, initheader), body)
end