class documentation

class SerialGroup(Group): (source)

View In Hierarchy

Subclass of `.Group` which executes in simple, serial fashion. .. versionadded:: 2.0

Method _do Undocumented

Inherited from Group:

Class Method from_connections Alternate constructor accepting `.Connection` objects.
Method __enter__ Undocumented
Method __exit__ Undocumented
Method __init__ Create a group of connections from one or more shorthand host strings.
Method close Executes `.Connection.close` on all member `Connections <.Connection>`.
Method get Executes `.Connection.get` on all member `Connections <.Connection>`.
Method put Executes `.Connection.put` on all member `Connections <.Connection>`.
Method run Executes `.Connection.run` on all member `Connections <.Connection>`.
Method sudo Executes `.Connection.sudo` on all member `Connections <.Connection>`.
def _do(self, method, *args, **kwargs): (source)

Undocumented