Package | mx.messaging |
Class | public class SubscriptionInfo |
Inheritance | SubscriptionInfo Object |
Language Version: | ActionScript 3.0 |
Product Versions: | BlazeDS 4, Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Public Properties
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 |
Public Methods
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 |
Property Detail
maxFrequency | property |
public var maxFrequency:uint
Language Version: | ActionScript 3.0 |
Product Versions: | BlazeDS 4, Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
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
Language Version: | ActionScript 3.0 |
Product Versions: | BlazeDS 4, Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
The selector. If null, indicates all messages should be sent.
subtopic | property |
public var subtopic:String
Language Version: | ActionScript 3.0 |
Product Versions: | BlazeDS 4, Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
The subtopic. If null, represents a subscription for messages directed to the destination with no subtopic.
Constructor Detail
SubscriptionInfo | () | Constructor |
public function SubscriptionInfo(st:String, sel:String, mf:uint = 0)
Language Version: | ActionScript 3.0 |
Product Versions: | BlazeDS 4, Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
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.
|
Mon Nov 28 2011, 06:48 AM -08:00