21 #ifdef OF_HAVE_SOCKETS 26 # include <exec/types.h> 27 # include <exec/tasks.h> 30 OF_ASSUME_NONNULL_BEGIN
58 - (void)objectIsReadyForReading: (
id)object;
65 - (void)objectIsReadyForWriting: (
id)object;
67 #if defined(OF_AMIGAOS) || defined(DOXYGEN) 73 - (void)execSignalWasReceived: (ULONG)signalMask;
88 @property (readonly, nonatomic) int fileDescriptorForReading;
102 @property (readonly, nonatomic) int fileDescriptorForWriting;
105 #ifdef OF_HAVE_SOCKETS 120 id <OFKernelEventObserverDelegate> _Nullable _delegate;
121 # if defined(OF_AMIGAOS) 122 struct Task *_waitingTask;
124 # elif defined(OF_HAVE_PIPE) 127 OFSocketHandle _cancelFD[2];
128 struct sockaddr_in _cancelAddr;
131 ULONG _execSignalMask;
139 @property OF_NULLABLE_PROPERTY (assign, nonatomic)
142 # if defined(OF_AMIGAOS) || defined(DOXYGEN) 148 @property (nonatomic) ULONG execSignalMask;
156 + (instancetype)observer;
235 - (void)observeUntilDate: (
OFDate *)date;
250 - (bool)of_processReadBuffers;
254 OF_ASSUME_NONNULL_END
This protocol is implemented by classes which can be observed for readiness for reading by OFKernelEv...
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:114
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:34
A class for storing and manipulating arbitrary data in an array.
Definition: OFMutableData.h:29