performAction: |
Called by the transaction controll in order to run the transaction
- (BOOL) performAction: (FTTransactionContext *) transactionContext;
transactionForOperationREMOVEOfNode |
creates an transaction for removing a dictionary entry
See Also:
- transactionForOperationREMOVEOfNode:withKey:withDictionaryServiceGraphImpl:transactionContext:
+ (FTDictionaryServiceTransactionStepImpl *) transactionForOperationREMOVEOfNode: (id <FTNode>) aNode withKey: (id <NSCoding>) aKey withDictionaryServiceGraphImpl:(FTDictionaryServiceForGraphImpl *) serviceImpl transactionContext: (FTTransactionContext *) context;
aNode
- associated node
aKey
- key for entry
serviceImpl
- underlying service instance
context
- transaction context to use
transactionForOperationREMOVEOfNode:withKey:withDictionaryServiceGraphImpl:transactionContext: |
creates an transaction for removing a dictionary entry
See Also:
- transactionForOperationREMOVEOfNode
+ (FTDictionaryServiceTransactionStepImpl *) transactionForOperationREMOVEOfNode: (id <FTNode>) aNode withKey: (id <NSCoding>) aKey withDictionaryServiceGraphImpl:(FTDictionaryServiceForGraphImpl *) serviceImpl transactionContext: (FTTransactionContext *) context;
aNode
- associated node
aKey
- key for entry
serviceImpl
- underlying service instance
context
- transaction context to use
transactionForOperationSETOfNode |
creates an transaction for adding/updating a dictionary entry
See Also:
- transactionForOperationSETOfNode:withKey:withObject:withDictionaryServiceGraphImpl:transactionContext:
+ (FTDictionaryServiceTransactionStepImpl *) transactionForOperationSETOfNode: (id <FTNode>) aNode withKey: (id <NSCoding>) aKey withObject: (id <NSCoding>) anObject withDictionaryServiceGraphImpl:(FTDictionaryServiceForGraphImpl *) serviceImpl transactionContext: (FTTransactionContext *) context;
aNode
- associated node
aKey
- key for entry
anObject
- object to set
serviceImpl
- underlying service instance
context
- transaction context to use
transactionForOperationSETOfNode:withKey:withObject:withDictionaryServiceGraphImpl:transactionContext: |
creates an transaction for adding/updating a dictionary entry
See Also:
- transactionForOperationSETOfNode
+ (FTDictionaryServiceTransactionStepImpl *) transactionForOperationSETOfNode: (id <FTNode>) aNode withKey: (id <NSCoding>) aKey withObject: (id <NSCoding>) anObject withDictionaryServiceGraphImpl:(FTDictionaryServiceForGraphImpl *) serviceImpl transactionContext: (FTTransactionContext *) context;
aNode
- associated node
aKey
- key for entry
anObject
- object to set
serviceImpl
- underlying service instance
context
- transaction context to use
undoAction: |
removes all modifications previously been done by
- (BOOL) undoAction: (FTTransactionContext *) transactionContext;
(Last Updated August 27, 2006)