Initial import to Tizen
[profile/ivi/python-twisted.git] / doc / core / howto / listings / TwistedQuotes / pbquote.py
1 from twisted.spread import pb
2
3 class QuoteReader(pb.Root):
4
5     def __init__(self, quoter):
6         self.quoter = quoter
7
8     def remote_nextQuote(self):
9         return self.quoter.getQuote()
10