Up

EOAdaptorContext Class

Authors

Mirko Viviani (mirko.viviani@gmail.com)

Version: 25994

Date: 2008-01-22 14:57:07 +0100 (Die, 22 Jän 2008)

Copyright: (C) 2000,2002,2003,2004,2005 Free Software Foundation, Inc.


Contents -

  1. Software documentation for the EOAdaptorContext class
  2. Software documentation for the EOAdaptorContext(EOTransactions) category
  3. Software documentation for the EOAdaptorContext(Private) category
  4. Software documentation for the NSObject(EOAdaptorContextDelegation) informal protocol
  5. EOAdaptorContext types
  6. EOAdaptorContext variables

Software documentation for the EOAdaptorContext class

EOAdaptorContext : NSObject

Declared in:
EOAccess/EOAdaptorContext.h
Description forthcoming.

Instance Variables

Method summary

adaptorContextWithAdaptor: 

+ (EOAdaptorContext*) adaptorContextWithAdaptor: (EOAdaptor*)adaptor;
Description forthcoming.

adaptor 

- (EOAdaptor*) adaptor;
Description forthcoming.

channels 

- (NSArray*) channels;
Description forthcoming.

createAdaptorChannel 

- (EOAdaptorChannel*) createAdaptorChannel;
Description forthcoming.

delegate 

- (id) delegate;
Description forthcoming.

handleDroppedConnection 

- (void) handleDroppedConnection;
Description forthcoming.

hasBusyChannels 

- (BOOL) hasBusyChannels;
Description forthcoming.

hasOpenChannels 

- (BOOL) hasOpenChannels;
Description forthcoming.

initWithAdaptor: 

- (id) initWithAdaptor: (EOAdaptor*)adaptor;
Description forthcoming.

setDelegate: 

- (void) setDelegate: (id)delegate;
Description forthcoming.



Instance Variables for EOAdaptorContext Class

_adaptor

@protected EOAdaptor* _adaptor;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_channels

@protected NSMutableArray* _channels;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_debug

@protected BOOL _debug;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_delegate

@protected id _delegate;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_delegateRespondsTo

@protected struct ... _delegateRespondsTo;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.

_transactionNestingLevel

@protected unsigned short int _transactionNestingLevel;
Warning the underscore at the start of the name of this instance variable indicates that, even though it is not technically private, it is intended for internal use within the package, and you should not use the variable in other code.




Software documentation for the EOAdaptorContext(EOTransactions) category

EOAdaptorContext(EOTransactions)

Declared in:
EOAccess/EOAdaptorContext.h
Description forthcoming.
Method summary

debugEnabledDefault 

+ (BOOL) debugEnabledDefault;
Description forthcoming.

setDebugEnabledDefault: 

+ (void) setDebugEnabledDefault: (BOOL)flag;
Description forthcoming.

beginTransaction 

- (void) beginTransaction;
Description forthcoming.

canNestTransactions 

- (BOOL) canNestTransactions;
Description forthcoming.

commitTransaction 

- (void) commitTransaction;
Description forthcoming.

hasOpenTransaction 

- (BOOL) hasOpenTransaction;
Description forthcoming.

isDebugEnabled 

- (BOOL) isDebugEnabled;
Description forthcoming.

rollbackTransaction 

- (void) rollbackTransaction;
Description forthcoming.

setDebugEnabled: 

- (void) setDebugEnabled: (BOOL)debugEnabled;
Description forthcoming.

transactionDidBegin 

- (void) transactionDidBegin;
Description forthcoming.

transactionDidCommit 

- (void) transactionDidCommit;
Description forthcoming.

transactionDidRollback 

- (void) transactionDidRollback;
Description forthcoming.

transactionNestingLevel 

- (unsigned) transactionNestingLevel;
Description forthcoming.

Software documentation for the EOAdaptorContext(Private) category

EOAdaptorContext(Private)

Declared in:
EOAccess/EOAdaptorContext.h
Warning this category is private, which means that the methods are for internal use by the package. You should not use them in external code.
Method summary

_channelDidInit: 

- (void) _channelDidInit: (id)channel;
Warning the underscore at the start of the name of this method indicates that it is private, for internal use only, and you should not use the method in your code.

_channelWillDealloc: 

- (void) _channelWillDealloc: (id)channel;
Warning the underscore at the start of the name of this method indicates that it is private, for internal use only, and you should not use the method in your code.

Software documentation for the NSObject(EOAdaptorContextDelegation) informal protocol

NSObject(EOAdaptorContextDelegation)

Declared in:
EOAccess/EOAdaptorContext.h
Description forthcoming.
Method summary

adaptorContextDidBegin: 

- (void) adaptorContextDidBegin: (id)context;
Description forthcoming.

adaptorContextDidCommit: 

- (void) adaptorContextDidCommit: (id)context;
Description forthcoming.

adaptorContextDidRollback: 

- (void) adaptorContextDidRollback: (id)context;
Description forthcoming.

adaptorContextShouldBegin: 

- (BOOL) adaptorContextShouldBegin: (id)context;
Description forthcoming.

adaptorContextShouldCommit: 

- (BOOL) adaptorContextShouldCommit: (id)context;
Description forthcoming.

adaptorContextShouldConnect: 

- (BOOL) adaptorContextShouldConnect: (id)context;
Description forthcoming.

adaptorContextShouldRollback: 

- (BOOL) adaptorContextShouldRollback: (id)context;
Description forthcoming.

EOAdaptorContext types

EODelegateResponse

typedef enum ... EODelegateResponse;
Description forthcoming.

EOAdaptorContext variables

EOAdaptorContextBeginTransactionNotification

NSString* EOAdaptorContextBeginTransactionNotification;
Description forthcoming.

EOAdaptorContextCommitTransactionNotification

NSString* EOAdaptorContextCommitTransactionNotification;
Description forthcoming.

EOAdaptorContextRollbackTransactionNotification

NSString* EOAdaptorContextRollbackTransactionNotification;
Description forthcoming.


Up