diff options
Diffstat (limited to 'Frameworks/PostgresKit/Source/FLXPostgresConnectionDelegate.h')
-rw-r--r-- | Frameworks/PostgresKit/Source/FLXPostgresConnectionDelegate.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Frameworks/PostgresKit/Source/FLXPostgresConnectionDelegate.h b/Frameworks/PostgresKit/Source/FLXPostgresConnectionDelegate.h index 9626d8e1..d8fd3ac6 100644 --- a/Frameworks/PostgresKit/Source/FLXPostgresConnectionDelegate.h +++ b/Frameworks/PostgresKit/Source/FLXPostgresConnectionDelegate.h @@ -25,13 +25,20 @@ @protocol FLXPostgresConnectionDelegate <NSObject> /** - * Called whenever a connection is successfully established. + * Called whenever the supplied connection has been successfully established and is ready to use. * * @param connection The connection instance. */ - (void)connectionEstablished:(FLXPostgresConnection *)connection; /** + * Called whenever the supplied connection has been successfully reset and is ready to use. + * + * @param connection The connection instance. + */ +- (void)connectionReset:(FLXPostgresConnection *)connection; + +/** * Called whenever a connection is disconnected. * * @param connection The connection instance. @@ -53,6 +60,6 @@ * @param query The query about the be executed. * @param values The values of the query. */ -- (void)connection:(FLXPostgresConnection *)connection willExecute:(NSObject *)query values:(NSArray *)values; +- (void)connection:(FLXPostgresConnection *)connection willExecute:(NSObject *)query withValues:(NSArray *)values; @end |