com.skillw.asahi.internal.namespacing.infix.linking.InfixCompletableFuture.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Pouvoir Show documentation
Show all versions of Pouvoir Show documentation
Bukkit Script Engine Plugin.
package com.skillw.asahi.internal.namespacing.infix.linking
import com.skillw.asahi.api.annotation.AsahiInfix
import com.skillw.asahi.api.member.parser.infix.namespacing.BaseInfix
import java.util.concurrent.CompletableFuture
/**
* @className ActionCompletableFuture
*
* @author Glom
* @date 2023年1月16日23点47分 Copyright 2024 Glom.
*/
@AsahiInfix
internal object InfixCompletableFuture : BaseInfix>(CompletableFuture::class.java) {
init {
infix("join") { future ->
future.join()
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy