summaryrefslogtreecommitdiff
path: root/packages/cocoaint/src/cloudkit/CKFetchNotificationChangesOperation.inc
blob: 5a653399b0f8e5256bf86e75ed2bfa31723ade22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ Parsed from CloudKit.framework CKFetchNotificationChangesOperation.h }


{$ifdef TYPES}
type
  CKFetchNotificationChangesOperationPtr = ^CKFetchNotificationChangesOperation;
{$endif}

{$ifdef CLASSES}

type
  CKFetchNotificationChangesOperation = objcclass external (CKOperation)
  public
    function initWithPreviousServerChangeToken (previousServerChangeToken: CKServerChangeToken): instancetype; message 'initWithPreviousServerChangeToken:';
    procedure setPreviousServerChangeToken(newValue: CKServerChangeToken); message 'setPreviousServerChangeToken:';
    function previousServerChangeToken: CKServerChangeToken; message 'previousServerChangeToken';
    procedure setResultsLimit(newValue: NSUInteger); message 'setResultsLimit:';
    function resultsLimit: NSUInteger; message 'resultsLimit';
    function moreComing: ObjCBOOL; message 'moreComing';
    procedure setNotificationChangedBlock(newValue: OpaqueCBlock); message 'setNotificationChangedBlock:';
    function notificationChangedBlock: OpaqueCBlock; message 'notificationChangedBlock';
    procedure setFetchNotificationChangesCompletionBlock(newValue: OpaqueCBlock); message 'setFetchNotificationChangesCompletionBlock:';
    function fetchNotificationChangesCompletionBlock: OpaqueCBlock; message 'fetchNotificationChangesCompletionBlock';
  end;
{$endif}