Package apple.homekit.protocol
Interface HMCameraStreamControlDelegate
-
public interface HMCameraStreamControlDelegateThis delegate receives updates on the camera stream.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default voidcameraStreamControlDidStartStream(HMCameraStreamControl cameraStreamControl)Informs the delegate that the stream has started.default voidcameraStreamControlDidStopStreamWithError(HMCameraStreamControl cameraStreamControl, NSError error)Informs the delegate that the stream has stopped.
-
-
-
Method Detail
-
cameraStreamControlDidStopStreamWithError
default void cameraStreamControlDidStopStreamWithError(HMCameraStreamControl cameraStreamControl, NSError error)
Informs the delegate that the stream has stopped.- Parameters:
cameraStreamControl- Sender of this message.error- When stream stops because of an error, 'error' will be populated.
-
cameraStreamControlDidStartStream
default void cameraStreamControlDidStartStream(HMCameraStreamControl cameraStreamControl)
Informs the delegate that the stream has started.- Parameters:
cameraStreamControl- Sender of this message.
-
-