blob: 7c7f832103c0e789e6ddf28f0134c544def09117 [file] [log] [blame]
Changyeon Jo2400b692019-07-18 21:32:48 -07001/*
2 * Copyright (C) 2019 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.hardware.automotive.evs@1.1;
18
19import @1.0::IEvsCameraStream;
20
21/**
Changyeon Jod2a82462019-07-30 11:57:17 -070022 * Implemented on client side to receive asynchronous streaming event deliveries.
Changyeon Jo2400b692019-07-18 21:32:48 -070023 */
24interface IEvsCameraStream extends @1.0::IEvsCameraStream {
25 /**
26 * Receives calls from the HAL each time an event happens.
27 *
28 * @param event EVS event with possible event information.
29 */
Changyeon Jo468cc1d2019-10-12 05:18:16 -070030 oneway notifyEvent(EvsEvent event);
Changyeon Jo2400b692019-07-18 21:32:48 -070031};