mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2024-11-22 16:23:48 +00:00
change flowsUpdatesFilter signature
This commit is contained in:
parent
e856dc4754
commit
735ed9fd86
@ -4,20 +4,12 @@ import com.github.insanusmokrassar.TelegramBotAPI.updateshandlers.FlowsUpdatesFi
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Non-suspendable function for easy-to-use creating of [FlowsUpdatesFilter] and applying the block to it
|
* Non-suspendable function for easy-to-use creating of [FlowsUpdatesFilter] and applying the block to it
|
||||||
*/
|
|
||||||
fun flowsUpdatesFilter(
|
|
||||||
internalChannelsSizes: Int = 64,
|
|
||||||
block: FlowsUpdatesFilter.() -> Unit
|
|
||||||
): FlowsUpdatesFilter = FlowsUpdatesFilter(internalChannelsSizes).apply(block)
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Suspend variation for [flowsUpdatesFilter] function
|
|
||||||
*
|
*
|
||||||
* @see flowsUpdatesFilter
|
* @see flowsUpdatesFilter
|
||||||
*/
|
*/
|
||||||
suspend fun flowsUpdatesFilter(
|
inline fun flowsUpdatesFilter(
|
||||||
internalChannelsSizes: Int = 64,
|
internalChannelsSizes: Int = 64,
|
||||||
block: suspend FlowsUpdatesFilter.() -> Unit
|
block: FlowsUpdatesFilter.() -> Unit
|
||||||
): FlowsUpdatesFilter {
|
): FlowsUpdatesFilter {
|
||||||
val filter = FlowsUpdatesFilter(internalChannelsSizes)
|
val filter = FlowsUpdatesFilter(internalChannelsSizes)
|
||||||
filter.block()
|
filter.block()
|
||||||
|
Loading…
Reference in New Issue
Block a user