MCPcopy Create free account
hub / github.com/google/gapid / handler

Struct handler

core/log/handler.go:30–33  ·  view source on GitHub ↗

handler is a simple implementation of the Handler interface

Source from the content-addressed store, hash-verified

28
29// handler is a simple implementation of the Handler interface
30type handler struct {
31 handle func(*Message)
32 close func()
33}
34
35func (h handler) Handle(m *Message) { h.handle(m) }
36func (h handler) Close() {

Callers 7

WatchEventsMethod · 0.50
FilterFunction · 0.50
DrainFunction · 0.50
BufferFunction · 0.50
processCommandsMethod · 0.50
FindMethod · 0.50
GetTimestampsMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected