|
C++ Server-Side SDK
LaunchDarkly SDK
|
#include <launchdarkly/bindings/c/export.h>

Go to the source code of this file.
Typedefs | |
| typedef struct _LDListenerConnection * | LDListenerConnection |
Functions | |
| LDListenerConnection_Disconnect (LDListenerConnection connection) | |
| LDListenerConnection_Free (LDListenerConnection connection) | |
| typedef struct _LDListenerConnection* LDListenerConnection |
Handle that represents a listener connection.
To stop unregister a listener call LDListenerConnection_Disconnect. To free a connection listener call LDListenerConnection_Free.
Freeing an LDListenerConnection does not disconnect the connection. If it is deleted, without being disconnected, then the listener will remain active until the associated SDK is freed.
| LDListenerConnection_Disconnect | ( | LDListenerConnection | connection | ) |
Disconnect a listener.
| connection | The connection for the listener to disconnect. Must not be NULL. |
| LDListenerConnection_Free | ( | LDListenerConnection | connection | ) |
Free a listener connection.
| connection | The LDListenerConnection to free. |