(major, minor, veryMinor, patch uint)
| 121 | } |
| 122 | |
| 123 | func newKafkaVersion(major, minor, veryMinor, patch uint) KafkaVersion { |
| 124 | return KafkaVersion{ |
| 125 | version: [4]uint{major, minor, veryMinor, patch}, |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | // IsAtLeast return true if and only if the version it is called on is |
| 130 | // greater than or equal to the version passed in: |
no outgoing calls