Result
public enum Result
Result after trying to post a danmaku.
- success: danmaku was successfully posted.
- refused: bilibili refused to accept the postable danmaku.
- aborted: something else went wrong.
-
Danmaku was successfully posted.
Declaration
Swift
case success(posted: S2BPostedDanmaku)
-
Bilibili refused to accept the postable danmaku.
Declaration
Swift
case refused(danmaku: S2BPostableDanmaku, message: String, code: Int)
-
Something else went wrong.
Declaration
Swift
case aborted(danmaku: S2BPostableDanmaku, data: Data?, error: Error?)