ObjFW
Public Member Functions
<OFApplicationDelegate> Protocol Reference

A protocol for delegates of OFApplication. More...

#import <OFApplication.h>

Inheritance diagram for <OFApplicationDelegate>:
<OFObject>

List of all members.

Public Member Functions

(void) - applicationDidFinishLaunching
 A method which is called when the application was initialized and is running now.
(void) - applicationWillTerminate
 A method which is called when the application will terminate.
(void) - applicationDidReceiveSIGINT
 A method which is called when the application received a SIGINT.
(void) - applicationDidReceiveSIGHUP
 A method which is called when the application received a SIGHUP.
(void) - applicationDidReceiveSIGUSR1
 A method which is called when the application received a SIGUSR1.
(void) - applicationDidReceiveSIGUSR2
 A method which is called when the application received a SIGUSR2.

Detailed Description

A protocol for delegates of OFApplication.


Member Function Documentation

- (void) applicationDidReceiveSIGHUP [optional]

A method which is called when the application received a SIGHUP.

This signal is not available on Windows.

Warning:
You are not allowed to send any messages inside this method, as message dispatching is not signal-safe! You are only allowed to do signal-safe operations like setting a variable or calling a signal-safe function!
- (void) applicationDidReceiveSIGINT [optional]

A method which is called when the application received a SIGINT.

Warning:
You are not allowed to send any messages inside this method, as message dispatching is not signal-safe! You are only allowed to do signal-safe operations like setting a variable or calling a signal-safe function!
- (void) applicationDidReceiveSIGUSR1 [optional]

A method which is called when the application received a SIGUSR1.

This signal is not available on Windows.

Warning:
You are not allowed to send any messages inside this method, as message dispatching is not signal-safe! You are only allowed to do signal-safe operations like setting a variable or calling a signal-safe function!
- (void) applicationDidReceiveSIGUSR2 [optional]

A method which is called when the application received a SIGUSR2.

This signal is not available on Windows.

Warning:
You are not allowed to send any messages inside this method, as message dispatching is not signal-safe! You are only allowed to do signal-safe operations like setting a variable or calling a signal-safe function!

The documentation for this protocol was generated from the following file:
 All Classes Functions Variables Properties