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;
}
}
Original issue reported on code.google.com by ofer.com...@gmail.com on 18 Mar 2010 at 8:01
Original issue reported on code.google.com by
ofer.com...@gmail.com
on 18 Mar 2010 at 8:01