SF.net SVN: fclient: [155] trunk/sandbox/fcp/fcp2_0_events.py
Status: Pre-Alpha
Brought to you by:
jurner
From: <ju...@us...> - 2008-02-05 16:00:52
|
Revision: 155 http://fclient.svn.sourceforge.net/fclient/?rev=155&view=rev Author: jurner Date: 2008-02-05 08:00:48 -0800 (Tue, 05 Feb 2008) Log Message: ----------- added request compression events Modified Paths: -------------- trunk/sandbox/fcp/fcp2_0_events.py Modified: trunk/sandbox/fcp/fcp2_0_events.py =================================================================== --- trunk/sandbox/fcp/fcp2_0_events.py 2008-02-05 16:00:15 UTC (rev 154) +++ trunk/sandbox/fcp/fcp2_0_events.py 2008-02-05 16:00:48 UTC (rev 155) @@ -68,6 +68,12 @@ class RequestCompleted(events.Event): """A request has been completed""" + class RequestCompressionStarted(events.Event): + """Compressing of a request has started""" + + class RequestCompressionFinished(events.Event): + """Compressing of a request is finished""" + class RequestFailed(events.Event): """A request failed""" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |