org.enodeframework.eventing.IEventSerializer 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.eventing;
import java.util.List;
import java.util.Map;
/**
* Represents an event.
*/
public interface IEventSerializer {
/**
* Serialize the given events to map.
*/
Map serialize(List> evnts);
/**
* Deserialize the given data to events.
*/
List> deserialize(Map data);
}