Class: GrabzIt::ScreenShotStatus

Inherits:
Object
  • Object
show all
Defined in:
lib/grabzit/screenshotstatus.rb

Overview

Author:

  • GrabzIt

Instance Method Summary collapse

Instance Method Details

#cachedBoolean

Returns if true the screenshot has been cached.

Returns:

  • (Boolean)

    if true the screenshot has been cached



18
19
20
# File 'lib/grabzit/screenshotstatus.rb', line 18

def cached
	@Cached
end

#expiredBoolean

Returns if true the screenshot has expired.

Returns:

  • (Boolean)

    if true the screenshot has expired



22
23
24
# File 'lib/grabzit/screenshotstatus.rb', line 22

def expired
	@Expired
end

#messageString

Returns any error messages associated with the screenshot

Returns:

  • (String)

    returns any error messages associated with the screenshot



26
27
28
# File 'lib/grabzit/screenshotstatus.rb', line 26

def message
	@Message
end

#processingBoolean

Returns if true the screenshot is still being processed.

Returns:

  • (Boolean)

    if true the screenshot is still being processed



14
15
16
# File 'lib/grabzit/screenshotstatus.rb', line 14

def processing
	@Processing
end