Results for: "String# "

Response class for Range Not Satisfiable responses (status code 416).

The request entity has a media type which the server or resource does not support. See 416 Range Not Satisfiable.

Response class for Misdirected Request responses (status code 421).

The request was directed at a server that is not able to produce a response. See 421 Misdirected Request.

Response class for Too Many Requests responses (status code 429).

The user has sent too many requests in a given amount of time. See 429 Too Many Requests.

Response class for Internal Server Error responses (status code 500).

An unexpected condition was encountered and no more specific message is suitable. See 500 Internal Server Error.

Response class for Variant Also Negotiates responses (status code 506).

Transparent content negotiation for the request results in a circular reference. See 506 Variant Also Negotiates.

No documentation available

WriteTimeout, a subclass of Timeout::Error, is raised if a chunk of the response cannot be written within the write_timeout. Not raised on Windows.

The writer adapter class

Simple option list providing mapping from short and/or long option string to OptionParser::Switch and mapping from acceptable argument to matching pattern and converter pair. Also provides summary feature.

Raises when switch is undefined.

Raises when the given argument does not match required format.

A set of rule and position in it’s RHS. Note that the number of pointers is more than rule’s RHS array, because pointer points right edge of the final symbol when reducing.

A table of LALR states.

A LALR state.

No documentation available
No documentation available
No documentation available

Resolv::Hosts is a hostname resolver that uses the system hosts file.

Raised when a hash-based tuple has an invalid key.

Raised when trying to use a canceled tuple.

Raised when trying to use an expired tuple.

A TupleEntry is a Tuple (i.e. a possible entry in some Tuplespace) together with expiry and cancellation data.

A TemplateEntry is a Template together with expiry and cancellation data.

Documentation?

A NotifyTemplateEntry is returned by TupleSpace#notify and is notified of TupleSpace changes. You may receive either your subscribed event or the ‘close’ event when iterating over notifications.

See TupleSpace#notify_event for valid notification types.

Example

ts = Rinda::TupleSpace.new
observer = ts.notify 'write', [nil]

Thread.start do
  observer.each { |t| p t }
end

3.times { |i| ts.write [i] }

Outputs:

['write', [0]]
['write', [1]]
['write', [2]]
Search took: 8ms  ·  Total Results: 2725