File: election_type.go

package info (click to toggle)
golang-github-ibm-sarama 1.45.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 2,964 kB
  • sloc: makefile: 35; sh: 19
file content (10 lines) | stat: -rw-r--r-- 190 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
package sarama

type ElectionType int8

const (
	// PreferredElection constant type
	PreferredElection ElectionType = 0
	// UncleanElection constant type
	UncleanElection ElectionType = 1
)