package de.reinhardt_karlheinz.pcc.listeners;

import java.util.EventListener;

import de.reinhardt_karlheinz.pcc.events.PCConnectionEvent;

/** The listener interface for receiving ad events. */
public interface PCConnectionListener extends EventListener {

  /** Invoked when an connection is established. */
  void onPCConnectionEstablished(PCConnectionEvent e);

  /** Invoked when an connection is established. */
  void onPCConnectionLost(PCConnectionEvent e);
}
