forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
556 B
13 lines
556 B
// Copyright (c) 2014-2018 The Notify Authors. All rights reserved.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
package notify
|
|
|
|
type watcherStub struct{ error }
|
|
|
|
// Following methods implement notify.watcher interface.
|
|
func (s watcherStub) Watch(string, Event) error { return s }
|
|
func (s watcherStub) Rewatch(string, Event, Event) error { return s }
|
|
func (s watcherStub) Unwatch(string) (err error) { return s }
|
|
func (s watcherStub) Close() error { return s }
|
|
|