cmvr-head-client/file_service/interface.py

28 lines
577 B
Python
Raw Permalink Normal View History

2026-08-05 16:42:59 +08:00
#
# Generated by erpcgen 1.14.0 on Tue Apr 28 12:25:45 2026.
#
# AUTOGENERATED - DO NOT EDIT
#
# Abstract base class for file_service
class Ifile_service(object):
SERVICE_ID = 2
FILEWRITEBEGIN_ID = 1
FILEWRITECHUNK_ID = 2
FILEWRITEEND_ID = 3
FILEWRITEABORT_ID = 4
def fileWriteBegin(self, path, total_size):
raise NotImplementedError()
def fileWriteChunk(self, data):
raise NotImplementedError()
def fileWriteEnd(self):
raise NotImplementedError()
def fileWriteAbort(self):
raise NotImplementedError()