Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ProcessOptions ¶
type ProcessOptions struct {
Timeout time.Duration
ValidateIntegrity bool
MaxRetries int
EnableCaching bool
}
func GetDefaultOptions ¶
func GetDefaultOptions() ProcessOptions
GetDefaultOptions returns default processing options
type ProcessResult ¶
type ProcessResult struct {
FilePath string
Success bool
ProcessedAt time.Time
CacheHit bool
ProcessingDuration time.Duration
}
func ProcessBatch ¶
func ProcessBatch(filePaths []string, options ProcessOptions) ([]*ProcessResult, error)
ProcessBatch processes multiple files
func ProcessFile ¶
func ProcessFile(filePath string) (*ProcessResult, error)
ProcessFile processes a single file with given options
Click to show internal directories.
Click to hide internal directories.