Changeset 2005
- Timestamp:
- 05/17/07 23:46:15
- Files:
-
- trunk/docs/devel/reference/tmpl/tny-async-worker-queue-task.sgml (modified) (2 diffs)
- trunk/docs/devel/reference/tmpl/tny-async-worker-queue.sgml (modified) (2 diffs)
- trunk/docs/devel/reference/tmpl/tny-generic-send-queue.sgml (modified) (2 diffs)
- trunk/docs/devel/reference/tmpl/tny-get-msg-queue.sgml (modified) (2 diffs)
- trunk/docs/devel/reference/tmpl/tny-queue-task.sgml (modified) (2 diffs)
- trunk/docs/devel/reference/tmpl/tny-queue.sgml (modified) (2 diffs)
- trunk/libtinymail-queues/tny-generic-send-queue.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/docs/devel/reference/tmpl/tny-async-worker-queue-task.sgml
r2003 r2005 3 3 4 4 <!-- ##### SECTION Short_Description ##### --> 5 5 A task for the asyncworker queue 6 6 7 7 <!-- ##### SECTION Long_Description ##### --> 8 8 <para> 9 9 A #TnyQueueTask implementation for AsyncWorker 10 10 </para> 11 11 … … 13 13 <!-- ##### SECTION See_Also ##### --> 14 14 <para> 15 15 #OAsyncWorkerTask, #OAsyncWorker, #TnyQueue 16 16 </para> 17 17 trunk/docs/devel/reference/tmpl/tny-async-worker-queue.sgml
r2003 r2005 3 3 4 4 <!-- ##### SECTION Short_Description ##### --> 5 5 A queue implementation 6 6 7 7 <!-- ##### SECTION Long_Description ##### --> 8 8 <para> 9 9 A #TnyQueue implementation that uses AsyncWorker 10 10 </para> 11 11 … … 13 13 <!-- ##### SECTION See_Also ##### --> 14 14 <para> 15 15 #OAsyncWorker, #OAsyncWorkerTas,k #TnyQueueTask 16 16 </para> 17 17 trunk/docs/devel/reference/tmpl/tny-generic-send-queue.sgml
r2003 r2005 3 3 4 4 <!-- ##### SECTION Short_Description ##### --> 5 5 A queue for sending messages 6 6 7 7 <!-- ##### SECTION Long_Description ##### --> 8 8 <para> 9 9 A queue for sending messages. The queue observers the outbox that you have to give it at its 10 contructor. When messages get added, it'll automatically assume that those messages must be 11 transferred and after that is successful for a message, moved to the sentbox. The type also 12 implements #TnySendQueue and you can also use that API with it to add messages. 10 13 </para> 11 14 … … 13 16 <!-- ##### SECTION See_Also ##### --> 14 17 <para> 15 18 #TnyQueue, #TnySendQueue, #TnyFolderObserver 16 19 </para> 17 20 trunk/docs/devel/reference/tmpl/tny-get-msg-queue.sgml
r2003 r2005 3 3 4 4 <!-- ##### SECTION Short_Description ##### --> 5 5 A queue for getting full messages 6 6 7 7 <!-- ##### SECTION Long_Description ##### --> 8 8 <para> 9 9 A queue that implements getting messages. Using this queue you can for example act 10 right after the or a message on the queue got fetched successfully. 10 11 </para> 11 12 … … 13 14 <!-- ##### SECTION See_Also ##### --> 14 15 <para> 15 16 #TnyQueue, #TnyQueueTask 16 17 </para> 17 18 trunk/docs/devel/reference/tmpl/tny-queue-task.sgml
r2003 r2005 1 1 <!-- ##### SECTION Title ##### --> 2 tny-queue-task2 TnyQueueTask 3 3 4 4 <!-- ##### SECTION Short_Description ##### --> 5 5 A task for a queue 6 6 7 7 <!-- ##### SECTION Long_Description ##### --> 8 8 <para> 9 9 A type that you need to implement that represents a task for a queue. 10 You can take a look at TnyAsyncWorkerQueueTask and TnyAsyncWorkerQueue if 11 you prefer not to implement it yourself. 10 12 </para> 11 13 … … 13 15 <!-- ##### SECTION See_Also ##### --> 14 16 <para> 15 17 #TnyQueue, #TnyAsyncWorkerQueueTask 16 18 </para> 17 19 trunk/docs/devel/reference/tmpl/tny-queue.sgml
r2003 r2005 1 1 <!-- ##### SECTION Title ##### --> 2 tny-queue2 TnyQueue 3 3 4 4 <!-- ##### SECTION Short_Description ##### --> 5 5 A queue type 6 6 7 7 <!-- ##### SECTION Long_Description ##### --> 8 8 <para> 9 9 A type that you must implement to have a queue mechanism. You can 10 use the TnyAsyncWorkerQueue if you prefer not to implement it 11 yourself 10 12 </para> 11 13 … … 13 15 <!-- ##### SECTION See_Also ##### --> 14 16 <para> 15 17 #TnyQueueTask, #TnyAsyncWorkerQueue 16 18 </para> 17 19 trunk/libtinymail-queues/tny-generic-send-queue.h
r1957 r2005 59 59 GType tny_generic_send_queue_get_type (void); 60 60 61 TnySendQueue* tny_generic_send_queue_new (TnyQueue *decorated, TnyTransportAccount *account, TnyFolder *outbox, TnyFolder *sentbox); 61 62 62 63 G_END_DECLS
