Files
ulthon_admin/app/common/service/DebugLogReaderService.php

21 lines
624 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
declare(strict_types=1);
namespace app\common\service;
use base\common\service\DebugLogReaderServiceBase;
/**
* debug 日志增量读取 serviceApp 入口类).
*
* JSONL{Ymd}.jsonl与遗留 CSV{ymd}.csv导入链路T6 定时任务)经本类
* 入口实例化(依赖倒置:调用方直接调本类,不调 Base
*
* 业务侧如需定制读取行为(如加自定义行过滤、改失败样本策略、换 position
* 落盘目标等),重写本类对应方法即可拦截,无需改动 extend/base/。
*/
class DebugLogReaderService extends DebugLogReaderServiceBase
{
}