패키지 | coldfusion.service |
클래스 | public class BasicService |
상속 | BasicService InternalConfig Object |
구현 | IEventDispatcher, IMXMLObject |
하위 클래스 | Chart, Document, Image, Ldap, Mail, Pdf, Pop |
언어 버전: | ActionScript 3.0 |
제품 버전: | ColdFusion 9 |
런타임 버전: | Flash Player 9, AIR 1.0 |
속성 | 정의 주체 | ||
---|---|---|---|
action : String
Action string for the service. | BasicService | ||
cfContextRoot : String
Context root of the ColdFusion server. | InternalConfig | ||
cfPort : int
Port where the ColdFusion server is running. | InternalConfig | ||
cfServer : String
Name or IP address of the ColdFusion server. | InternalConfig | ||
constructor : Object
지정된 객체 인스턴스의 클래스 객체 또는 생성자 함수에 대한 참조입니다. | Object | ||
destination : String
Specifies the destination for the remoting call. | InternalConfig | ||
secureHttp : Boolean
Boolean value that specifies if secure HTTP is used:
yes: uses secure HTTP
no: does not use secure HTTP
| InternalConfig | ||
servicePassword : String
Password to access ColdFusion services. | InternalConfig | ||
serviceUserName : String
Username to access ColdFusion services. | InternalConfig |
메서드 | 정의 주체 | ||
---|---|---|---|
BasicService(source:String)
The constructor that accepts the source CFC on the ColdFusion-side of the service. | BasicService | ||
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. | BasicService | ||
Dispatches an event into the event flow. | BasicService | ||
Returns the RemoteObject instance used by the proxy classes to make the
remote object call. | BasicService | ||
Checks whether the EventDispatcher object has any listeners registered
for a specific type of event. | BasicService | ||
지정된 속성이 객체에 정의되어 있는지 여부를 나타냅니다. | Object | ||
Object 클래스의 인스턴스가 매개 변수로 지정된 객체의 프로토타입 체인에 있는지 여부를 나타냅니다. | Object | ||
지정된 속성이 존재하고 열거 가능한지 여부를 나타냅니다. | Object | ||
Removes a listener from the EventDispatcher object. | BasicService | ||
루프 작업에서 동적 속성을 사용할 수 있는지 여부를 설정합니다. | Object | ||
로캘별 규칙에 따라 서식이 지정된 이 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 문자열 표현을 반환합니다. | Object | ||
지정된 객체의 프리미티브 값을 반환합니다. | Object | ||
Checks whether an event listener is registered with this EventDispatcher object or any of its
ancestors for the specified event type. | BasicService |
이벤트 | 요약 | 정의 주체 | ||
---|---|---|---|---|
Dispatched when a ColdFusion service call fails. | BasicService | |||
Dispatched when a ColdFusion service call returns successfully. | BasicService |
action | 속성 |
public var action:String
언어 버전: | ActionScript 3.0 |
제품 버전: | ColdFusion 9 |
런타임 버전: | Flash Player 9, AIR 1.0 |
Action string for the service.
BasicService | () | 생성자 |
addEventListener | () | 메서드 |
public function addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
언어 버전: | ActionScript 3.0 |
제품 버전: | ColdFusion 9 |
런타임 버전: | Flash Player 9, AIR 1.0 |
Registers an event listener object with an EventDispatcher object so that the listener receives notification of an event.
매개 변수
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. The priority is designated by a signed 32-bit integer.
| |
useWeakReference:Boolean (default = false ) — Determines whether the reference to the listener is strong or weak.
|
dispatchEvent | () | 메서드 |
public function dispatchEvent(evt:Event):Boolean
언어 버전: | ActionScript 3.0 |
제품 버전: | ColdFusion 9 |
런타임 버전: | Flash Player 9, AIR 1.0 |
Dispatches an event into the event flow.
매개 변수
evt:Event — The Event object that is dispatched into the event flow.
If the event is being redispatched, a clone of the event is created automatically.
|
Boolean — A value of true if the event was successfully dispatched.
A value of false indicates failure or that preventDefault() was called on the event.
|
getRemoteObject | () | 메서드 |
public function getRemoteObject():RemoteObject
언어 버전: | ActionScript 3.0 |
제품 버전: | ColdFusion 9 |
런타임 버전: | Flash Player 9, AIR 1.0 |
Returns the RemoteObject
instance used by the proxy classes to make the
remote object call.
RemoteObject |
hasEventListener | () | 메서드 |
public function hasEventListener(type:String):Boolean
언어 버전: | ActionScript 3.0 |
제품 버전: | ColdFusion 9 |
런타임 버전: | Flash Player 9, AIR 1.0 |
Checks whether the EventDispatcher object has any listeners registered
for a specific type of event. This allows you to determine where an
EventDispatcher object has altered handling of an event type in the event flow hierarchy.
To determine whether a specific event type actually triggers an event listener, use willTrigger()
.
매개 변수
type:String — The type of event.
|
Boolean — A value of true if a listener of the specified type is registered;
false otherwise.
|
removeEventListener | () | 메서드 |
public function removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
언어 버전: | ActionScript 3.0 |
제품 버전: | ColdFusion 9 |
런타임 버전: | Flash Player 9, AIR 1.0 |
Removes a listener from the EventDispatcher object.
매개 변수
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.
|
willTrigger | () | 메서드 |
public function willTrigger(type:String):Boolean
언어 버전: | ActionScript 3.0 |
제품 버전: | ColdFusion 9 |
런타임 버전: | Flash Player 9, AIR 1.0 |
Checks whether an event listener is registered with this EventDispatcher object or any of its ancestors for the specified event type.
매개 변수
type:String — The type of event.
|
Boolean — A value of true if a listener of the specified type will be triggered;
false otherwise.
|
fault | 이벤트 |
coldfusion.service.events.ColdFusionServiceFaultEvent
속성 ColdFusionServiceFaultEvent.type =
coldfusion.service.events.ColdFusionServiceFaultEvent.FAULT
Dispatched when a ColdFusion service call fails.
Defines the value of theType
property of a ColdFusionServiceFaultEvent object.
result | 이벤트 |
coldfusion.service.events.ColdFusionServiceResultEvent
속성 ColdFusionServiceResultEvent.type =
coldfusion.service.events.ColdFusionServiceResultEvent.RESULT
Dispatched when a ColdFusion service call returns successfully.
The RESULT event type.Tue Jun 12 2018, 03:17 PM Z