FilteredJob 類別
用於新增方法以篩選作業的Mixin
- 繼承
-
FilteredJob
建構函式
FilteredJob()
方法
matches_filter |
檢查作業 (self) 是否符合指定的屬性。如果有的話。 |
matches_filter
檢查作業 (self) 是否符合指定的屬性。如果有的話。
matches_filter(name_match: str = None, status: JobStatus | None = None, created_after: datetime | None = None) -> bool
參數
名稱 | Description |
---|---|
name_match
|
作業名稱比對的 regex 表達式 預設值: None
|
status
|
依作業狀態篩選 預設值: None
|
created_after
|
在建立作業之後篩選作業 預設值: None
|
傳回
類型 | Description |
---|---|
是否符合篩選 |