CustomEvents

Type : Constructor

Support : 1.0

Extend : -

  • Custom Event 관리.
  • Constructor 객체의 이벤트 관리 기능으로 상속되어지기 위한 목적으로 만들어 졌다. $B.Class 객체는 CustomEvents를 상속하고 있다.

Methods

  • CustomEvents( optionCheck )

    CustomEvents 생성
    • optionCheck : Boolean
      hasListener, removeListener에서 options를 체크할지 여부 설정, 기본값:false
  • addListener( type, listener, options ) : CustomEventsver 1.0~

    리스너 등록
    • type : String
      Listener type
    • listener : Function
      Listener
    • options : ObjectBoolean
      useCapture, passive 등의 설정 용도
  • removeListener( type, listener, options ) : CustomEventsver 1.0~

    리스너 삭제
    • type : String
      Listener type, 입력하지 않으면 모든 리스너 삭제
    • listener : Function
      Listener, 입력하지 않으면 모든 리스너 삭제
    • options : ObjectBoolean
      useCapture, passive 등등, 입력하지 않으면 type과 listener만 비교하여 삭제
  • hasListener( type, listener, options ) : Booleanver 1.0~

    리스너 등록여부 반환
    • type : String
      Listener type, 입력하지 않으면 모든 리스너 체크
    • listener : Function
      Listener, 입력하지 않으면 type만 체크
    • options : ObjectBoolean
      useCapture, passive 등등, 입력하지 않으면 type과 listener만 체크
  • dispatch( type, data ) : CustomEventsver 1.0~

    등록 리스너 실행
    • type : String
      실행시킬 Listener type
    • data : Object
      Listener의 전달할 데이타, 리스너의 매개변수로 전달 받는다.

Example

var cs = new $B.event.CustomEvents()
    .addListener( 'test', function (e) {
        console.log( e.myId );
    });

cs.dispatch( 'test', {myId: 'TEST_ID'} );