class documentation

class StringPager(Pager): (source)

View In Hierarchy

A simple pager that splits a string into chunks.
Method __init__ Create a pager with a Reference to a remote collector and an optional callable to invoke upon completion.
Method next​Page Override this to return an object to be sent to my collector.
Instance Variable chunk​Size Undocumented
Instance Variable pointer Undocumented
Instance Variable string Undocumented

Inherited from Pager:

Method send​Next​Page (internal) Method called by Broker.
Method still​Paging (internal) Method called by Broker.
Method stop​Paging Call this when you're done paging.
Instance Variable callback Undocumented
Instance Variable callback​Args Undocumented
Instance Variable callback​Keyword Undocumented
Instance Variable collector Undocumented
Instance Variable _still​Paging Undocumented
def __init__(self, collector, st, chunkSize=8192, callback=None, *args, **kw): (source)
Create a pager with a Reference to a remote collector and an optional callable to invoke upon completion.
def nextPage(self): (source)
Override this to return an object to be sent to my collector.
chunkSize = (source)

Undocumented

pointer: int = (source)

Undocumented

string = (source)

Undocumented