Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Parameter

Type

Required

Description

preferred_alarm_period

Integer

선호하는 알람 주기를 앱에게 힌트로 보내기 위한 값. (단위: 밀리초)

inputs [ ]

String

Required

앱이 인스턴스 생성을 위해 입력받는 파라메터들

값들의 형태는 앱마다 고유하게 정의 됨

...

Code Block
{
  "jsonrpc": "2.0",
  "method": "async_run_app_instance",
  "params": {
    "preferred_alarm_period": 5000,    // 앱 인스턴스로부터 5초마다 알람을 받는 것을 선호
    "inputs": [
      "rtsp://220.11.59.183:554",   // 입력 비디오 RTSP URI
    ]
  },
  "id": "nk2-0"
}

...