-
-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implements FMLE-compatible sequences.
- Loading branch information
Showing
3 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,22 @@ | ||
package com.haishinkit.net | ||
|
||
import com.haishinkit.rtmp.RtmpConnection | ||
|
||
/** | ||
* A interface that response for a RTMPConnection.call(). | ||
* A interface that response for an [RtmpConnection].call(). | ||
*/ | ||
interface Responder { | ||
fun onResult(arguments: List<Any?>) | ||
|
||
fun onStatus(arguments: List<Any?>) | ||
|
||
companion object { | ||
val NULL = object : Responder { | ||
override fun onResult(arguments: List<Any?>) { | ||
} | ||
|
||
override fun onStatus(arguments: List<Any?>) { | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters