/* * Salamander Transport Layer * * Michael J. Willis (violator@umich.edu) * * $Workfile: SalDataFlowTicket.java $ * $Author: rmalan $ * $Date: 1997/07/16 02:22:29 $ * $Revision: 1.2 $ */ package Salamander; /** * This object will be used to uniquely identify a request for a data * flow, so that information on number of bytes sent, etc, can be * managed. * The SalDataFlowTicket is returned from SalConnection.startDataFlow(), * and is required for SalConnection.stopDataFlow(); */ public class SalDataFlowTicket { /** * Unique id. Will work on this later. */ int m_id; }