| 1778 | return None |
| 1779 | |
| 1780 | class StreamingGcodeFileInformation(PrintingGcodeFileInformation): |
| 1781 | def __init__(self, path, localFilename, remoteFilename): |
| 1782 | PrintingGcodeFileInformation.__init__(self, path, None) |
| 1783 | self._localFilename = localFilename |
| 1784 | self._remoteFilename = remoteFilename |
| 1785 | |
| 1786 | def start(self): |
| 1787 | PrintingGcodeFileInformation.start(self) |
| 1788 | self._startTime = time.time() |
| 1789 | |
| 1790 | def getLocalFilename(self): |
| 1791 | return self._localFilename |
| 1792 | |
| 1793 | def getRemoteFilename(self): |
| 1794 | return self._remoteFilename |