21 #ifdef OF_HAVE_SOCKETS 26 # include <exec/types.h> 27 # include <exec/tasks.h> 30 OF_ASSUME_NONNULL_BEGIN
34 #ifdef OF_HAVE_THREADS 62 - (void)objectIsReadyForReading: (
id)object;
69 - (void)objectIsReadyForWriting: (
id)object;
71 #if defined(OF_AMIGAOS) || defined(DOXYGEN) 77 - (void)execSignalWasReceived: (ULONG)signalMask;
93 @property (readonly, nonatomic) int fileDescriptorForReading;
108 @property (readonly, nonatomic) int fileDescriptorForWriting;
111 #ifdef OF_HAVE_SOCKETS 127 id <OFKernelEventObserverDelegate> _Nullable _delegate;
128 # if defined(OF_AMIGAOS) 129 struct Task *_waitingTask;
131 # elif defined(OF_HAVE_PIPE) 134 OFSocketHandle _cancelFD[2];
135 struct sockaddr_in _cancelAddr;
138 ULONG _execSignalMask;
146 @property OF_NULLABLE_PROPERTY (assign, nonatomic)
149 # if defined(OF_AMIGAOS) || defined(DOXYGEN) 155 @property (nonatomic) ULONG execSignalMask;
163 + (instancetype)observer;
242 - (void)observeUntilDate: (
OFDate *)date;
257 - (bool)of_processReadBuffers;
261 OF_ASSUME_NONNULL_END
This protocol is implemented by classes which can be observed for readiness for reading by OFKernelEv...
A class for creating mutual exclusions.
Definition: OFMutex.h:36
A class for storing, accessing and comparing dates.
Definition: OFDate.h:33
The root class for all other classes inside ObjFW.
Definition: OFObject.h:690
An abstract class for storing, adding and removing objects in an array.
Definition: OFMutableArray.h:47
double OFTimeInterval
A time interval in seconds.
Definition: OFObject.h:154
A class that can observe multiple kernel events (e.g. streams being ready to read) at once...
Definition: OFKernelEventObserver.h:121
This protocol is implemented by classes which can be observed for readiness for writing by OFKernelEv...
A protocol that needs to be implemented by delegates for OFKernelEventObserver.
Definition: OFKernelEventObserver.h:37
A class for storing and manipulating arbitrary data in an array.
Definition: OFMutableData.h:29