![]() |
Public API Reference |
#include <aws.h>
Inheritance diagram for iAwsSlot:
Public Methods | |
virtual void | Connect (iAwsSource *source, unsigned long signal, iAwsSink *sink, unsigned long trigger)=0 |
Connect sets us up to receive signals from some other component. More... | |
virtual void | Disconnect (iAwsSource *source, unsigned long signal, iAwsSink *sink, unsigned long trigger)=0 |
Disconnects us from the specified source and signal. More... | |
virtual void | Emit (iAwsSource &source, unsigned long signal)=0 |
Invoked by a source to emit the signal to this slot's sink. More... |
Definition at line 648 of file aws.h.
|
Connect sets us up to receive signals from some other component. You can connect to as many different sources and signals as you'd like. You may connect to multiple signals from the same source. |
|
Disconnects us from the specified source and signal. This may happen automatically if the signal source goes away. You will receive disconnect notification always (even if you request the disconnection.) |
|
Invoked by a source to emit the signal to this slot's sink.
|