view tango/tango/io/model/IListener.d @ 373:d1574e142e93 trunk

[svn r394] Fixed the new DtoNullValue function
author lindquist
date Tue, 15 Jul 2008 15:16:56 +0200
parents 1700239cab2e
children
line wrap: on
line source

/*******************************************************************************

        copyright:      Copyright (c) 2004 Kris Bell. All rights reserved

        license:        BSD style: $(LICENSE)
        
        version:        Initial release: April 2004      
        
        author:         Kris

*******************************************************************************/

module tango.io.model.IListener;


/******************************************************************************

******************************************************************************/

interface IListener
{
        /***********************************************************************

                Stop listening; this may be delayed until after the next
                valid read operation.

        ***********************************************************************/

        void cancel ();
}