FileErrorAlert
data class FileErrorAlert(val torrentName: String?, val operation: String, val filename: String, val errorMessage: String) : TorrentAlert
Generated when the storage fails to read or write a file; the torrent is paused. Ported from libtorrent::file_error_alert (alert_type 43).
libtorrent renders "<name> <operation> (<filename>) error: <message>".
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 error description.
Link copied to clipboard
the torrent's name, or null when the handle would be invalid (rendered as " - ", matching libtorrent).