org.enodeframework.messaging.IMessageHandlerProxy2.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enode Show documentation
Show all versions of enode Show documentation
The enodeframework core implementation.
package org.enodeframework.messaging
import org.enodeframework.infrastructure.IObjectProxy
import org.enodeframework.infrastructure.MethodInvocation
interface IMessageHandlerProxy2 : IObjectProxy, MethodInvocation {
suspend fun handleAsync(message1: IMessage, message2: IMessage)
}