From: david-sarah Date: Mon, 3 Oct 2011 19:52:39 +0000 (-0700) Subject: immutable/literal.py: add pauseProducing method to LiteralProducer. refs #1537 X-Git-Url: https://git.rkrishnan.org/?p=tahoe-lafs%2Ftahoe-lafs.git;a=commitdiff_plain;h=bc0d9b682e97c26dbc0c8a731c7a3a3837815667 immutable/literal.py: add pauseProducing method to LiteralProducer. refs #1537 --- diff --git a/src/allmydata/immutable/literal.py b/src/allmydata/immutable/literal.py index 16effaa4..dc77b4ec 100644 --- a/src/allmydata/immutable/literal.py +++ b/src/allmydata/immutable/literal.py @@ -46,8 +46,13 @@ class _ImmutableFileNodeBase(object): class LiteralProducer: implements(IPushProducer) + + def pauseProducing(self): + pass + def resumeProducing(self): pass + def stopProducing(self): pass