001 package com.croftsoft.core.util.mail;
002
003 import com.croftsoft.core.util.seq.Seq;
004 import com.croftsoft.core.util.slot.Slot;
005
006 /**********************************************************************
007 * An interface for sending and receiving messages.
008 *
009 * For documentation on interface Mail and class FlipMail, please see
010 * the tutorial "Interface Mail" at
011 * <a target="_blank"
012 * href="https://www.croftsoft.com/library/tutorials/mail/">
013 * https://www.croftsoft.com/library/tutorials/mail/</a>
014 *
015 * @version
016 * $Id: Mail.java,v 1.3 2008/09/20 05:01:27 croft Exp $
017 * @since
018 * 2008-01-27
019 * @author
020 * <a href="https://www.croftsoft.com/">David Wallace Croft</a>
021 **********************************************************************/
022
023 public interface Mail<Message>
024 extends Seq<Message>, Slot<Message>
025 ///////////////////////////////////////////////////////////////////////
026 ///////////////////////////////////////////////////////////////////////
027 {
028
029 ///////////////////////////////////////////////////////////////////////
030 ///////////////////////////////////////////////////////////////////////
031 }