28 lines
577 B
Python
28 lines
577 B
Python
#
|
|
# 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()
|
|
|
|
|