(self, entity)
| 74 | self.toLower(data) |
| 75 | |
| 76 | def receive(self, entity): |
| 77 | if not self.processIqRegistry(entity): |
| 78 | entityType = entity.getTag() |
| 79 | if entityType in self.entity_callbacks: |
| 80 | self.entity_callbacks[entityType](entity) |
| 81 | else: |
| 82 | self.toUpper(entity) |
| 83 | |
| 84 | @ProtocolEntityCallback("stream:error") |
| 85 | def onStreamError(self, streamErrorEntity): |
nothing calls this directly
no test coverage detected