mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 16:30:41 +00:00
documented functions, types, constants, and variables
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@19797 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b8a296b3df
commit
0d31eca394
39 changed files with 1010 additions and 116 deletions
|
@ -54,12 +54,34 @@
|
|||
* Posting styles into notification queue
|
||||
*/
|
||||
|
||||
/**
|
||||
* Enumeration of possible timings for distribution of notifications handed
|
||||
* to an [NSNotificationQueue]:
|
||||
<example>
|
||||
{
|
||||
NSPostWhenIdle, // post when runloop is idle
|
||||
NSPostASAP, // post soon
|
||||
NSPostNow // post synchronously
|
||||
}
|
||||
</example>
|
||||
*/
|
||||
typedef enum {
|
||||
NSPostWhenIdle,
|
||||
NSPostASAP,
|
||||
NSPostNow
|
||||
} NSPostingStyle;
|
||||
|
||||
/**
|
||||
* Enumeration of possible ways to combine notifications when dealing with
|
||||
* [NSNotificationQueue]:
|
||||
<example>
|
||||
{
|
||||
NSNotificationNoCoalescing, // don't combine
|
||||
NSNotificationCoalescingOnName, // combine all registered with same name
|
||||
NSNotificationCoalescingOnSender // combine all registered with same object
|
||||
}
|
||||
</example>
|
||||
*/
|
||||
typedef enum {
|
||||
NSNotificationNoCoalescing = 0,
|
||||
NSNotificationCoalescingOnName = 1,
|
||||
|
@ -70,6 +92,9 @@ typedef enum {
|
|||
* NSNotificationQueue class
|
||||
*/
|
||||
|
||||
/**
|
||||
* Structure used internally by [NSNotificationQueue].
|
||||
*/
|
||||
struct _NSNotificationQueueList;
|
||||
|
||||
@interface NSNotificationQueue : NSObject
|
||||
|
@ -102,7 +127,7 @@ struct _NSNotificationQueueList;
|
|||
|
||||
#ifndef NO_GNUSTEP
|
||||
/*
|
||||
* Functions used by the the NSRunLoop
|
||||
* Functions used by the NSRunLoop
|
||||
*/
|
||||
extern void GSNotifyASAP(void);
|
||||
extern void GSNotifyIdle(void);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue