All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rebue.wheel.vertx.spi.MessageCodecAdapter Maven / Gradle / Ivy

The newest version!
package rebue.wheel.vertx.spi;

import io.vertx.core.eventbus.MessageCodec;

/**
 * 消息解码器适配器
 */
public interface MessageCodecAdapter {
    /**
     * @return 解码器适配器名称
     */
    String name();

    /**
     * @return 消息的类
     */
    Class messageClass();

    /**
     * @return 消息解码器
     */
    MessageCodec messageCodec();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy