enum

ServiceStatus::Response::Kind

Inherits Enum < Comparable < Value < Object

Constants

Pending = 0

取りに行っている最中である。次の poll_new で聞き直す。

NotModified = 1

前回から変わっていない(304)。

Body = 2

本文が取れた。

Failed = 3

取れなかった。回線が無いか、配信側が応えなかった。

Instance methods

body?

Returns true if this enum value equals Body

Source
failed?

Returns true if this enum value equals Failed

Source
not_modified?

Returns true if this enum value equals NotModified

Source
pending?

Returns true if this enum value equals Pending

Source