StateChangedAlert
data class StateChangedAlert(val torrentName: String?, val state: TorrentState, val prevState: TorrentState) : TorrentAlert
Generated whenever a torrent changes its state. Ported from libtorrent::state_changed_alert (alert_type 10).
Properties
Link copied to clipboard
The bitmask of AlertCategory flags this alert belongs to. Mirrors alert::category(), which returns the concrete alert's static_category.
Link copied to clipboard
the previous state.
Link copied to clipboard
the new state.
Link copied to clipboard
the torrent's name, or null when the handle would be invalid (rendered as " - ", matching libtorrent).