summaryrefslogtreecommitdiff
path: root/service/watcher/watcher.go
blob: 9d770135df97f9e728b97a1330d7848148d82f8d (plain)
1
2
3
4
5
6
7
8
9
package watcher

import "github.com/spiral/roadrunner"

// Server defines the ability to get access to underlying roadrunner server for watching capabilities.
type Server interface {
	// Server must return associated roadrunner serve.
	Server() *roadrunner.Server
}