The reconcile package is used for DOM reconcilation in Isomorphic Go web applications.

go19.go 678B

1234567891011121314151617181920
  1. // Copyright 2017 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // +build go1.9
  5. package context
  6. import "context" // standard library's context, as of Go 1.7
  7. // A Context carries a deadline, a cancelation signal, and other values across
  8. // API boundaries.
  9. //
  10. // Context's methods may be called by multiple goroutines simultaneously.
  11. type Context = context.Context
  12. // A CancelFunc tells an operation to abandon its work.
  13. // A CancelFunc does not wait for the work to stop.
  14. // After the first call, subsequent calls to a CancelFunc do nothing.
  15. type CancelFunc = context.CancelFunc