project BLF > class BBaseDaemonProcessor > method StartDaemonComponent
Description
This method should be overridden in the specific daemon processor component.
It should start the daemon business component instance and return its handle.
Parameters
ohDaemon | output | handle | Handle to the daemon instance |
ohDaemonQueue | output | handle | Handle to the DaemonQueue component |
oiReturnStatus | output | integer | Return status of the method. |
Internal usage
BLF
program code (program1/bbasedaemonprocessor.p)
/**** Following should be added in this method (replace BBaseDaemon by the right Daemon component)
<I-? {bFcStartAndOpenInstance &ADD-TO-TRANSACTION = ""
&CLASS = "BBaseDaemon"
&ERROR-STATEMENT = ""}>
assign ohDaemon = vhBBaseDaemonInst.
<I-? {bFcStartAndOpenInstance &ADD-TO-TRANSACTION = ""
&CLASS = "BBaseDaemonQueue"
&ERROR-STATEMENT = ""}>
assign ohDaemonQueue = vhBBaseDaemonQueueInst.
****/