Difference between revisions of "Extensions.Flash.GetDownloadData"

From emotive
Jump to navigation Jump to search
(Created page with "Category:Flash == Classification == {{ClassificationActivity | GetDownloadData | Fills a ByteField variable with data about the context of a session from Flash | Act...")
 
Line 1: Line 1:
 
[[Category:Flash]]
 
[[Category:Flash]]
 
== Classification ==
 
== Classification ==
{{ClassificationActivity | GetDownloadData | Fills a [[ByteField]] variable with data about the context of a session from Flash | [[Action]]| [[DiagCom|OTX DiagCom extension]] | [[Flash related actions]] | - | - }}
+
{{ClassificationActivity | GetDownloadData | Fills a [[ByteField]] variable with data about the context of a session from Flash | [[Action]]| [[DiagCom|OTX DiagCom extension]] | [[Flash related actions]] | [[OutOfBoundsException]] | - }}
  
 
== Pseudo-Code Syntax ==
 
== Pseudo-Code Syntax ==

Revision as of 10:45, 31 July 2014

Classification

Name GetDownloadData
Short Description Fills a ByteField variable with data about the context of a session from Flash
Class Action
Extension OTX DiagCom extension
Group Flash related actions
Exceptions OutOfBoundsException
Checker Rules -
Standard Compliant Yes

Pseudo-Code Syntax

GetDownloadData(FlashSession session, Numeric block, Numeric segment, Numeric size, Numeric position, ByteFieldVariable data);

Description

GetDownloadData fills a given otx:ByteField variable with data about the context of a session from Flash.

Properties

Name Data Type Class Default Cardinality Description
Session FlashSession Term - [1] Flash session which provides data which are addressed.
Block Integer Term - [1] By this element, a block in the context of Flash session is considered. This value should be in the range of the existing blocks.
Segment Integer Term - [1] By this element, a segment in the context of Flash session is considered. This value should be in the range of existing segments.
Size Integer Term - [1] This element defines how much bytes of data from the context to be read. It should be a positive value.
Position Integer Term - [1] This element defines the first position, to be read by the activity. Position must be greater than or equal to zero and not greater than the size of the segment minus one.
Data ByteField Variable - [1] This item sets the variable into which the read data should be stored.

Examples

GetDownloadData(flashSession, 0, 0, 0, 0, byteFieldVariable);

See also

StoreUploadData
SetFlashSession