Type SLGenericGen.TSLBlockBufferGenEvent
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Package: SignalLabBasicPkg
Unit: SLGenericGen
Contents |
Syntax
Delphi:
type procedure TSLBlockBufferGenEvent( Sender : TObject, var OutBuffer : ISLBlockBuffer, var Populated : Boolean, var Finished : Boolean ) of object;
C++ Builder:
typedef void __fastcall (__closure *TSLBlockBufferGenEvent)( TObject * Sender, ISLBlockBuffer &OutBuffer, bool &Populated, bool &Finished );
Summary
Event type to be used by the TSLGenericGen.
Description
Defines a callback event to be used by the TSLGenericGen . To provide data populate the OutBuffer. To force the generator to ignore the data request, set the Finished to False. If you decide not to populate the buffer set the Populated to False. In this case the generator will zero the buffer.