bgneal@522: """ bgneal@522: Celery tasks for the forums application. bgneal@522: bgneal@522: """ bgneal@750: from __future__ import absolute_import bgneal@750: bgneal@750: from celery import shared_task bgneal@522: bgneal@522: import forums.latest bgneal@522: bgneal@522: bgneal@750: @shared_task bgneal@522: def new_post_task(post_id): bgneal@522: """ bgneal@522: This task performs new post processing on a Celery task. bgneal@522: bgneal@522: """ bgneal@522: forums.latest.process_new_post(post_id) bgneal@522: bgneal@522: bgneal@750: @shared_task bgneal@595: def updated_post_task(post_id): bgneal@595: """ bgneal@595: This task performs updated post processing on a Celery task. bgneal@595: bgneal@595: """ bgneal@595: forums.latest.process_updated_post(post_id) bgneal@595: bgneal@595: bgneal@750: @shared_task bgneal@522: def new_topic_task(topic_id): bgneal@522: """ bgneal@522: This task performs new topic processing on a Celery task. bgneal@522: bgneal@522: """ bgneal@522: forums.latest.process_new_topic(topic_id) bgneal@595: bgneal@595: bgneal@750: @shared_task bgneal@595: def updated_topic_task(topic_id): bgneal@595: """ bgneal@595: This task performs updated topic processing on a Celery task. bgneal@595: bgneal@595: """ bgneal@595: forums.latest.process_updated_topic(topic_id)