MCPcopy Create free account
hub / github.com/apache/qpid-proton-j / RejectValue

Class RejectValue

tests/python/proton_tests/engine.py:2100–2114  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2098 assert dlv.annotations == None
2099
2100class RejectValue:
2101 def __init__(self, condition):
2102 self.condition = condition
2103
2104 def apply(self, dlv):
2105 dlv.condition = self.condition
2106
2107 def check(self, dlv):
2108 assert dlv.data == None, dlv.data
2109 assert dlv.section_number == 0
2110 assert dlv.section_offset == 0
2111 assert dlv.condition == self.condition, (dlv.condition, self.condition)
2112 assert dlv.failed == False
2113 assert dlv.undeliverable == False
2114 assert dlv.annotations == None
2115
2116class ReceivedValue:
2117 def __init__(self, section_number, section_offset):

Callers 1

testRejectedMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected