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

com.github.edgar615.util.event.EventActionCodec Maven / Gradle / Ivy

There is a newer version: 1.0.11
Show newest version
package com.github.edgar615.util.event;

import java.util.Map;

/**
 * Created by Edgar on 2017/3/22.
 *
 * @author Edgar  Date 2017/3/22
 */
public interface EventActionCodec {

  /**
   * 解码
   *
   * @param map
   * @return
   */
  EventAction decode(Map map);

  /**
   * 编码
   *
   * @param action
   * @return
   */
  Map encode(EventAction action);

  String name();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy