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

com.bazaarvoice.emodb.event.db.EventIdSerializer Maven / Gradle / Ivy

There is a newer version: 6.5.190
Show newest version
package com.bazaarvoice.emodb.event.db;

public interface EventIdSerializer {
    /** Formats the specified event ID as a string. */
    String toString(EventId eventId);

    /** Parses the specified event ID string into an {@code EventId} object. */
    EventId fromString(String string, String channel);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy