Export to GitHub

apns-sharp - issue #25

Reconnect Delay is not changed


Posted on Mar 18, 2010 by Massive Camel

NotificationConnection.ReconnectDelay is not updated although you change the value the property value is not changed.

Currently NotificationService.ReconnectDelay is: public int ReconnectDelay { get ; set; }

Should be like NotificationService.SendRetries

public int SendRetries { get { return sendRetries; } set { sendRetries = value; foreach (NotificationConnection con in notificationConnections) con.SendRetries = sendRetries; } }

* solution ******* public int ReconnectDelay { get { return reconnectDelay; } set { reconnectDelay = value; foreach (NotificationConnection con in notificationConnections) con.ReconnectDelay = reconnectDelay; } }

Comment #1

Posted on Mar 27, 2010 by Happy Lion

Fixed via your suggestion. Thanks!

Status: Fixed

Labels:
Type-Defect Priority-Medium