Package | mx.messaging |
Class | public class SubscriptionInfo |
Inheritance | SubscriptionInfo ![]() |
Property | Defined By | ||
---|---|---|---|
![]() | constructor : Object
A reference to the class object or constructor function for a given object instance. | Object | |
maxFrequency : uint
The maximum number of messages per second the subscription wants to receive. | SubscriptionInfo | ||
![]() | prototype : Object [static]
A reference to the prototype object of a class or function object. | Object | |
selector : String
The selector. | SubscriptionInfo | ||
subtopic : String
The subtopic. | SubscriptionInfo |
Method | Defined By | ||
---|---|---|---|
Builds a new SubscriptionInfo with the specified subtopic and selector. | SubscriptionInfo | ||
![]() |
Indicates whether an object has a specified property defined. | Object | |
![]() |
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | |
![]() |
Indicates whether the specified property exists and is enumerable. | Object | |
![]() |
Sets the availability of a dynamic property for loop operations. | Object | |
![]() |
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | |
![]() |
Returns the string representation of the specified object. | Object | |
![]() |
Returns the primitive value of the specified object. | Object |
maxFrequency | property |
public var maxFrequency:uint
The maximum number of messages per second the subscription wants to receive. Zero means the subscription has no preference for the number of messages it receives.
selector | property |
public var selector:String
The selector. If null, indicates all messages should be sent.
subtopic | property |
public var subtopic:String
The subtopic. If null, represents a subscription for messages directed to the destination with no subtopic.
SubscriptionInfo | () | Constructor |
public function SubscriptionInfo(st:String, sel:String, mf:uint = 0)
Builds a new SubscriptionInfo with the specified subtopic and selector.
Parametersst:String — The subtopic for the subscription. If null, represents a subscription
for messages directed to the destination with no subtopic.
| |
sel:String — The selector. If null, inidcates all messages should be sent.
| |
mf:uint (default = 0 ) — The maximum number of messages per second the subscription wants
to receive. Zero means no preference.
|