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

com.spotify.confidence.EventSender Maven / Gradle / Ivy

package com.spotify.confidence;

import com.google.common.annotations.Beta;
import java.util.Map;

@Beta
public interface EventSender extends Contextual {
  public void track(String eventName, ConfidenceValue.Struct data);

  public void track(String eventName);

  void flush();

  @Override
  EventSender withContext(ConfidenceValue.Struct context);

  @Override
  default EventSender withContext(Map context) {
    return withContext(ConfidenceValue.Struct.of(context));
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy