New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

parse-stack-async

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

parse-stack-async

  • 0.1.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

Parse Stack - Async

This Parse Stack plugin adds support for background saves and deletes, similar to the use of saveInBackground and saveEventually in other Parse Server SDKs. It utilizes SuckerPunch to perform the asynchronous processing of the API operation in a separate queue.

Gitter

Installation

Add this line to your application's Gemfile:

gem 'parse-stack-async'

And then execute:

$ bundle

Or install it yourself as:

$ gem install parse-stack-async

Usage

This plugin for Parse Stack allows you to save and delete objects in an asynchronous manner, without blocking the main thread of an application. This is useful when saving objects in a web application like Rails.

This plugin adds two methods to all Parse::Object subclasses: save_eventually and destroy_eventually, which mimic the same API in the mobile SDKs for Parse. These take an optional block that will provide you information whether it was successful in performing the corresponding operation.


require 'parse/stack'
require 'parse/stack/async'

object = Parse::User.first # get a user
object.username = 'newUserName'

# saves object in a background thread.
object.save_eventually do |success|
  puts "Successfully saved in Parse!" if success
end

# Or delete asynchronously
anotherObject.destroy_eventually do |success|
  puts "Deleted object from Parse!" if success
end

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/modernistik/parse-stack-async.

License

The gem is available as open source under the terms of the MIT License.

FAQs

Package last updated on 11 Jan 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc