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

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

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

import com.google.common.collect.Multimap;

import java.nio.ByteBuffer;
import java.util.Collection;

public interface EventWriterDAO {

    void addAll(Multimap eventsByChannel, EventSink sink);

    void delete(String channel, Collection eventIds);

    void deleteAll(String channel);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy