summaryrefslogtreecommitdiff
path: root/plugins/jobs/brokers/ephemeral/entry.go
blob: bf8796d5387097fc8fe7948e99a656c17d18484d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package ephemeral

type entry struct {
	id string
}

func (e *entry) ID() string {
	return e.id
}

func (e *entry) Ask() {
	// no-op
}

func (e *entry) Nack() {
	// no-op
}

func (e *entry) Payload() []byte {
	panic("implement me")
}