README.markdown in simple_worker-1.0.12 vs README.markdown in simple_worker-1.0.13
- old
+ new
@@ -78,9 +78,16 @@
worker.body = "This is the body"
worker.queue
This will send it off to the SimpleWorker cloud.
+To queue worker without uploading you could try to do following:
+
+ data[:attr_encoded] = Base64.encode64({'@to'=>'example@email.com'}.to_json)
+ data[:sw_config] = SimpleWorker.config.get_atts_to_send
+ SimpleWorker.service.queue('EmailWorker', data)
+
+
Setting Priority
----------------------------------------------
Simply define the priority in your queue command.