Tenho uma biblioteca Java de terceiros que possui um objeto com interface como esta:
public interface Handler<C> {
void call(C context) throws Exception;
}
Como posso implementá-lo de forma concisa em Kotlin semelhante à classe anônima Java desta forma:
Handler<MyContext> handler = new Handler<MyContext> {
@Override
public void call(MyContext context) throws Exception {
System.out.println("Hello world");
}
}
handler.call(myContext) // Prints "Hello world"
acceptHandler { println("Hello: $it")}
também funcionaria na maioria dos casos