14 lines
437 B
PHP
14 lines
437 B
PHP
<?php
|
|
|
|
interface stTaskSchedulerImportReaderInterface
|
|
{
|
|
public function open(string $file): bool;
|
|
public function isValid(): bool;
|
|
public function rewind(): void;
|
|
public function count(): int;
|
|
public function setOffset(int $offset): void;
|
|
public function getOffset(): int;
|
|
public function getFiletypeExtension(): string;
|
|
public function read(\Closure $callback): bool;
|
|
public function close(): void;
|
|
} |