ClientId Property

A string that uniquely identifies this instance of the class to the server.

Syntax

ANSI (Cross Platform)
char* GetClientId();
int SetClientId(const char* lpszClientId); Unicode (Windows) LPWSTR GetClientId();
INT SetClientId(LPCWSTR lpszClientId);
@property (nonatomic,readwrite,assign,getter=clientId,setter=setClientId:) NSString* clientId;
- (NSString*)clientId;
- (void)setClientId:(NSString*)newClientId;
#define PID_MQTT_CLIENTID 2

IPWORKSMQ_EXTERNAL void* IPWORKSMQ_CALL IPWorksMQ_MQTT_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);
IPWORKSMQ_EXTERNAL int IPWORKSMQ_CALL IPWorksMQ_MQTT_Set(void *lpObj, int propid, int arridx, const void *val, int cbVal);

Default Value

""

Remarks

The ClientId string is used by the server to uniquely identify each client that is connected to it. In MQTT 5, when the SessionExpInterval config is set to a positive value, the server will also associate it with any session state data that needs to be saved for the length of time specified when the class is disconnected.

If ClientId is empty when Connect is called, the class's behavior depends on value of CleanSession. If CleanSession is True, the class will automatically generate a unique value for ClientId before connecting. If CleanSession is False, the class fails with an error.

This property is not available at design time.

Data Type

String

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks MQ 2020 C++ Edition - Version 20.0 [Build 8155]