module Totter::Client::Async

Client methods for working with async results in the application.

Public Instance Methods

async_result(id) click to toggle source

Returns an async result dataset

@param id [String] The async id @return [Hashie::Mash] @example

Totter.activity(1)
# File lib/totter/client/async.rb, line 11
def async_result(id)
  get("async/#{id}").body
end