OSDN Git Service

ライブビューデータがなかった時の処理を追加。
[gokigen/A01d.git] / app / src / main / java / net / osdn / gokigen / a01d / camera / ptpip / wrapper / command / IPtpIpCommandPublisher.java
1 package net.osdn.gokigen.a01d.camera.ptpip.wrapper.command;
2
3 import androidx.annotation.NonNull;
4
5 public interface IPtpIpCommandPublisher
6 {
7     boolean isConnected();
8     boolean enqueueCommand(@NonNull IPtpIpCommand command);
9
10     boolean flushHoldQueue();
11
12     int isExistCommandMessageQueue(int id);
13
14     int getCurrentQueueSize();
15     boolean flushQueue();
16
17     void start();
18     void stop();
19 }