IdeaBlade DevForce 2010 Help Reference
CleanupThrottle Property
See Also  Send Feedback
IdeaBlade.Core Assembly > IdeaBlade.Core.Configuration Namespace > NotificationServiceElement Class : CleanupThrottle Property



Can be used to throttle the number of subscribers pinged in a single cleanup sweep. Applicable to Server only.

Syntax

Visual Basic (Declaration) 
<XmlAttributeAttribute("cleanupThrottle")>
<DefaultValueAttribute()>
<DescriptionAttribute("Can be used to throttle the number of subscribers pinged in a single cleanup sweep. Applicable to Server only")>
Public Property CleanupThrottle As Integer
Visual Basic (Usage)Copy Code
Dim instance As NotificationServiceElement
Dim value As Integer
 
instance.CleanupThrottle = value
 
value = instance.CleanupThrottle
C# 
[XmlAttributeAttribute("cleanupThrottle")]
[DefaultValueAttribute()]
[DescriptionAttribute("Can be used to throttle the number of subscribers pinged in a single cleanup sweep. Applicable to Server only")]
public int CleanupThrottle {get; set;}
C++/CLI 
[XmlAttributeAttribute("cleanupThrottle")]
[DefaultValueAttribute()]
[DescriptionAttribute("Can be used to throttle the number of subscribers pinged in a single cleanup sweep. Applicable to Server only")]
public:
property int CleanupThrottle {
   int get();
   void set (    int value);
}

Remarks

The default value of 0 means that the cleanup will not be throttled. Set the throttle to a positive integer value to control the maximum number of outstanding client ping requests that may be issued in a single cleanup. Under heavy load situations with many subscribers, the throttle can help avoid threading and resource issues.

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2013 All Rights Reserved.