Improve instances manegement

Resolve #4187
This commit is contained in:
syuilo
2019-02-08 20:56:16 +09:00
parent 72b85fc09f
commit 5e0eda9526
7 changed files with 65 additions and 11 deletions

View File

@@ -68,8 +68,23 @@ export interface IInstance {
*/
latestRequestReceivedAt?: Date;
/**
* このインスタンスと不通かどうか
*/
isNotResponding: boolean;
/**
* このインスタンスと最後にやり取りした日時
*/
lastCommunicatedAt: Date;
/**
* このインスタンスをブロックしているか
*/
isBlocked: boolean;
/**
* このインスタンスが閉鎖済みとしてマークされているか
*/
isMarkedAsClosed: boolean;
}