StreamLinkforC
7.0.3-308369
|
Defines the interface that should be satisfied to receive information on publishing success and failure. More...
#include <sl4c.h>
Data Fields | |
void(* | ok )(streamlink *client, void *ctx, const char *subject) |
Invoked when a command has successfully executed. More... | |
void(* | error )(streamlink *client, void *ctx, const char *subject, sl_subjecterror error, sl_error_reason reason) |
Invoked when a command has not executed successfully. More... | |
Defines the interface that should be satisfied to receive information on publishing success and failure.
void(* sl_commandlistener::error) (streamlink *client, void *ctx, const char *subject, sl_subjecterror error, sl_error_reason reason) |
Invoked when a command has not executed successfully.
client | - The client with which this command is associated. |
ctx | - The user supplied context. |
subject | - The subject to which the command applied. |
error | - The reason why the command failed. |
reason | - Sub-reason for the error |
void(* sl_commandlistener::ok) (streamlink *client, void *ctx, const char *subject) |
Invoked when a command has successfully executed.
client | - The client with which this command is associated. |
ctx | - The user supplied context. |
subject | - The subject to which the command applied. |