Referenshandbok för ActionScript® 3.0 i Adobe® Flash®-plattformen
Hem  |  Dölj paket och klasslista |  Paket  |  Klasser  |  Nyheter  |  Index  |  Bilagor  |  Varför på engelska?
Filter: Hämtar data från servern ...
Hämtar data från servern ...
mx.olap 

OLAPCube  - AS3 Flex

Paketmx.olap
Klasspublic class OLAPCube
ArvOLAPCube Inheritance Proxy
Implementerar IOLAPCube, IEventDispatcher

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

The OLAPCube class represents an OLAP cube.

MXML-syntaxexpandedDölj MXML-syntax

The <mx:OLAPCube> tag inherits all of the tag attributes of its superclass, and adds the following tag attributes:

  <mx:OLAPCube
    Properties
    dataProvider=""
    dimensions=""
    elements=""
    measures=""
  />
 
  

MXML-standardegenskapelements

Fler exempel

Relaterade API-element



Publika egenskaper
 EgenskapDefinieras med
  dataProvider : ICollectionView
The flat data used to populate the OLAP cube.
OLAPCube
  dimensions : IList
All dimensions in the cube, as a list of IOLAPDimension instances.
OLAPCube
  elements : Array
[lässkyddad] Processes the input Array and initializes the dimensions and measures properties based on the elements of the Array.
OLAPCube
  measures : IList
[lässkyddad] Sets the measures of the OLAP cube, as a list of OLAPMeasure instances.
OLAPCube
  name : String
The name of the OLAP cube.
OLAPCube
Skyddade egenskaper
 EgenskapDefinieras med
  cubeBuildingTimeInterval : int = 5
The time interval, in milliseconds, used by the timer of the refresh() method to iteratively build the cube.
OLAPCube
  measureDimensionName : String = "Measures"
Sets the name of the dimension for the measures of the OLAP cube.
OLAPCube
  queryBuildingTimeInterval : int = 1
The time interval, in milliseconds, used by the timer of the execute() method to iteratively process queries.
OLAPCube
  resultClass : Class
The class used by an OLAPCube instance to return the result.
OLAPCube
  workDuration : int = 50
The time, in milliseconds, used by the refresh() method to iteratively build the cube.
OLAPCube
Publika metoder
 MetodDefinieras med
  
OLAPCube(name:String = null)
Constructor.
OLAPCube
  
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registers an event listener object with an EventDispatcher object so that the listener receives notification of an event.
OLAPCube
  
Aborts a query that has been submitted for execution.
OLAPCube
  
Aborts the current cube refresh, if one is executing.
OLAPCube
  
Dispatches an event into the event flow.
OLAPCube
  
Queues an OLAP query for execution.
OLAPCube
  
Returns the dimension with the given name within the OLAP cube.
OLAPCube
  
Checks whether the object has any listeners registered for a specific type of event.
OLAPCube
  
Refreshes the cube from the data provider.
OLAPCube
  
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
Removes a listener.
OLAPCube
  
Returns the name of the cube
OLAPCube
  
Checks whether an event listener is registered with this object or any of its ancestors for the specified event type.
OLAPCube
Händelser
 Händelse Sammanfattning Definieras med
  Dispatched when a cube has been created and is ready to be queried.OLAPCube
  Dispatched continuously as a cube is being created by a call to the refresh() method.OLAPCube
  Dispatched continuously as a query result is being generated by a call to the execute() method.OLAPCube
Egenskapsdetaljer

cubeBuildingTimeInterval

egenskap
protected var cubeBuildingTimeInterval:int = 5

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

The time interval, in milliseconds, used by the timer of the refresh() method to iteratively build the cube. You can set it to a higher value if you can wait longer before the cube is built. You can set it to a lower value, but it might negatively impact responsiveness of your application.

dataProvider

egenskap 
dataProvider:ICollectionView

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

The flat data used to populate the OLAP cube. You must call the refresh() method to initialize the cube after setting this property.



Implementering
    public function get dataProvider():ICollectionView
    public function set dataProvider(value:ICollectionView):void

dimensions

egenskap 
dimensions:IList

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

All dimensions in the cube, as a list of IOLAPDimension instances.



Implementering
    public function get dimensions():IList
    public function set dimensions(value:IList):void

elements

egenskap 
elements:Array  [lässkyddad]

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

Processes the input Array and initializes the dimensions and measures properties based on the elements of the Array. Dimensions are represented in the Array by instances of the OLAPDimension class, and measures are represented by instances of the OLAPMeasure class.

Use this property to define the dimensions and measures of a cube in a single Array.



Implementering
    public function set elements(value:Array):void

measureDimensionName

egenskap 
protected var measureDimensionName:String = "Measures"

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

Sets the name of the dimension for the measures of the OLAP cube.

Standardvärdet är "Measures".

measures

egenskap 
measures:IList  [lässkyddad]

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

Sets the measures of the OLAP cube, as a list of OLAPMeasure instances.



Implementering
    public function set measures(value:IList):void

name

egenskap 
name:String

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

The name of the OLAP cube.



Implementering
    public function get name():String
    public function set name(value:String):void

queryBuildingTimeInterval

egenskap 
protected var queryBuildingTimeInterval:int = 1

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

The time interval, in milliseconds, used by the timer of the execute() method to iteratively process queries. You can set it to a higher value if you can wait for longer before the cube generates the query result. You can set it to a lower value to obtain query results faster, but it might negatively impact the responsiveness of your application.

resultClass

egenskap 
protected var resultClass:Class

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

The class used by an OLAPCube instance to return the result. You can replace the default class, OLAPResult, with your own implementation of the IOLAPResult interface to customize the result.

Standardvärdet är OLAPResult.

workDuration

egenskap 
protected var workDuration:int = 50

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

The time, in milliseconds, used by the refresh() method to iteratively build the cube. A higher value would mean more rows would get processed at each timer event. You can set it to a higher value if you want the cube to be built faster, but it might negatively impact responsiveness of your application.

Konstruktordetaljer

OLAPCube

()Konstruktor
public function OLAPCube(name:String = null)

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

Constructor.

Parametrar
name:String (default = null) — The name of the OLAP cube.
Metoddetaljer

addEventListener

()metod
public function addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

Registers an event listener object with an EventDispatcher object so that the listener receives notification of an event.

Parametrar

type:String — The type of event.
 
listener:Function — The listener function that processes the event.
 
useCapture:Boolean (default = false) — Determines whether the listener works in the capture phase or the target and bubbling phases.
 
priority:int (default = 0) — The priority level of the event listener.
 
useWeakReference:Boolean (default = false) — Determines whether the reference to the listener is strong or weak. A strong reference (the default) prevents your listener from being garbage-collected. A weak reference does not.

Relaterade API-element

cancelQuery

()metod 
public function cancelQuery(query:IOLAPQuery):void

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

Aborts a query that has been submitted for execution.

Parametrar

query:IOLAPQuery — The query to abort.

cancelRefresh

()metod 
public function cancelRefresh():void

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

Aborts the current cube refresh, if one is executing.

dispatchEvent

()metod 
public function dispatchEvent(event:Event):Boolean

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

Dispatches an event into the event flow. The event target is the object upon which the dispatchEvent() method is called.

Parametrar

event:Event — The Event object that is dispatched into the event flow.

Returnerar
Boolean — A value of true if the event was successfully dispatched. A value of false indicates failure or that the preventDefault() method was called on the event.

Relaterade API-element

execute

()metod 
public function execute(query:IOLAPQuery):mx.rpc:AsyncToken

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

Queues an OLAP query for execution. After you call the refresh() method to update the cube, you must wait for a complete event before you call the execute() method.

OLAP cubes can be complex, so you do not want your application to pause while Flex calculates the results of your OLAP query. The execute() method returns an instance of the AsyncToken class, which lets you set up handlers for asynchronous operations so that your application can continue to execute during query processing.

When using the AsyncToken class, you set up two functions to handle the query results. In this example, the showResult() function handles the query results when the query succeeds, and the showFault() function handles any errors detected during query execution:

      <mx:Script>
              
              // Function to execute a query.
              private function runQuery(cube:IOLAPCube):void {
                  // Create a query instance.
                  var query:IOLAPQuery = getQuery(cube);
                  // Execute the query.
                  var token:AsyncToken = cube.execute(query);
                  // Set up handlers for the query results.
                  token.addResponder(new AsyncResponder(showResult, showFault));
              }
              
              // Handle a query fault.
              private function showFault(result:FaultEvent, token:Object):void {
                  Alert.show("Error in query.");
              }
      
              // Handle a query success.
              private function showResult(result:Object, token:Object):void {
                  if (!result) {
                      Alert.show("No results from query.");
                      return;
                  }
      
                  myOLAPDG.dataProvider= result as OLAPResult;            
              }        
      </mx:Script>
      
      <mx:OLAPDataGrid id="myOLAPDG" width="100%" height="100%" />
      

Parametrar

query:IOLAPQuery — The query to execute, represented by an IOLAPQuery instance.

Returnerar
mx.rpc:AsyncToken — An AsyncToken instance.

findDimension

()metod 
public function findDimension(name:String):IOLAPDimension

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

Returns the dimension with the given name within the OLAP cube.

Parametrar

name:String — The name of the dimension.

Returnerar
IOLAPDimension — An IOLAPDimension instance representing the dimension, or null if a dimension is not found.

hasEventListener

()metod 
public function hasEventListener(type:String):Boolean

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

Checks whether the object has any listeners registered for a specific type of event. This lets you determine where an object has altered handling of an event type in the event flow hierarchy.

Parametrar

type:String — The type of event.

Returnerar
Boolean — A value of true if a listener of the specified type is registered; false otherwise.

Relaterade API-element

refresh

()metod 
public function refresh():void

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

Refreshes the cube from the data provider. After setting the cube's schema, you must call this method to build the cube.

This method dispatches a progress event to indicate progress, and dispatches a complete event when the cube is complete and ready to execute queries. You must wait for a complete event before you call the execute() method to run a query.

removeEventListener

()metod 
public function removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

Removes a listener. If there no matching listener is registered, a call to this method has no effect.

Parametrar

type:String — The type of event.
 
listener:Function — The listener object to remove.
 
useCapture:Boolean (default = false) — Specifies whether the listener was registered for the capture phase or the target and bubbling phases.

Relaterade API-element

toString

()metod 
public function toString():String

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

Returns the name of the cube

Returnerar
String — The name of the cube.

willTrigger

()metod 
public function willTrigger(type:String):Boolean

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

Checks whether an event listener is registered with this object or any of its ancestors for the specified event type. This method returns true if an event listener is triggered during any phase of the event flow when an event of the specified type is dispatched to this object or to any of its descendants.

Parametrar

type:String — The type of event.

Returnerar
Boolean — A value of true if a listener of the specified type is triggered; false otherwise.

Relaterade API-element

Händelsedetaljer

complete

Händelse
Typ av händelseobjekt: mx.events.CubeEvent
egenskap CubeEvent.type = mx.events.CubeEvent.CUBE_COMPLETE

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

Dispatched when a cube has been created and is ready to be queried.

The CubeEvent.CUBE_COMPLETE constant defines the value of the type property of the event object for a complete event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelabletrue
currentTargetThe Object that defines the event listener that handles the event. For example, if you use myButton.addEventListener() to register an event listener, myButton is the value of the currentTarget.
descriptionDescription of what is being processed.
progressThe number of elements in the cube that have been updated.
targetThe Object that dispatched the event; it is not always the Object listening for the event. Use the currentTarget property to always access the Object listening for the event.
totalThe total number of elements in the cube that need to be udpated.
typeCubeEvent.CUBE_COMPLETE

progress

Händelse  
Typ av händelseobjekt: mx.events.CubeEvent
egenskap CubeEvent.type = mx.events.CubeEvent.CUBE_PROGRESS

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

Dispatched continuously as a cube is being created by a call to the refresh() method.

The CubeEvent.CUBE_PROGRESS constant defines the value of the type property of the event object for a progress event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelabletrue
currentTargetThe Object that defines the event listener that handles the event. For example, if you use myButton.addEventListener() to register an event listener, myButton is the value of the currentTarget.
descriptionDescription of what is being processed.
progressThe number of elements in the cube that have been updated.
targetThe Object that dispatched the event; it is not always the Object listening for the event. Use the currentTarget property to always access the Object listening for the event.
totalThe total number of elements in the cube that need to be udpated.
typeCubeEvent.CUBE_PROGRESS

queryProgress

Händelse  
Typ av händelseobjekt: mx.events.CubeEvent
egenskap CubeEvent.type = mx.events.CubeEvent.QUERY_PROGRESS

Språkversion: ActionScript 3.0
Produktversion: Flex 3
Körningsmiljöversioner: Flash Player 9, AIR 1.1

Dispatched continuously as a query result is being generated by a call to the execute() method.

The CubeEvent.QUERY_PROGRESS constant defines the value of the type property of the event object for a queryProgress event.

The properties of the event object have the following values:

PropertyValue
bubblesfalse
cancelabletrue
currentTargetThe Object that defines the event listener that handles the event. For example, if you use myButton.addEventListener() to register an event listener, myButton is the value of the currentTarget.
descriptionDescription of what is being processed.
progressThe number of elements in the cube that have been updated.
targetThe Object that dispatched the event; it is not always the Object listening for the event. Use the currentTarget property to always access the Object listening for the event.
totalThe total number of elements in the cube that need to be udpated.
typeCubeEvent.QUERY_PROGRESS




[ X ]Varför på engelska?
Innehåll i Referenshandbok för ActionScript 3.0 i Adobe Flash-plattformen är på engelska

Det är inte alla delar av Referenshandbok för ActionScript 3.0 i Adobe Flash-plattformen som översätts till alla språk. Om ett språkelement inte översätts visas det på engelska. Klassen ga.controls.HelpBox översätts till exempel inte till något språk. I den svenska versionen av referenshandboken visas därför klassen ga.controls.HelpBox på engelska.