Rename package to 'flowrate'

This commit is contained in:
Maxim Khitrov 2014-04-18 20:41:01 -04:00
parent 10e10fd81d
commit 6a20af8766
4 changed files with 7 additions and 7 deletions

View File

@ -2,9 +2,9 @@
// Written by Maxim Khitrov (November 2012)
//
// Package flowcontrol provides the tools for monitoring and limiting the
// transfer rate of an arbitrary data stream.
package flowcontrol
// Package flowrate provides the tools for monitoring and limiting the flow rate
// of an arbitrary data stream.
package flowrate
import (
"math"

View File

@ -2,7 +2,7 @@
// Written by Maxim Khitrov (November 2012)
//
package flowcontrol
package flowrate
import (
"errors"
@ -11,7 +11,7 @@ import (
// ErrLimit is returned by the Writer when a non-blocking write is short due to
// the transfer rate limit.
var ErrLimit = errors.New("flowcontrol: transfer rate limit exceeded")
var ErrLimit = errors.New("flowrate: flow rate limit exceeded")
// Limiter is implemented by the Reader and Writer to provide a consistent
// interface for monitoring and controlling data transfer.

View File

@ -2,7 +2,7 @@
// Written by Maxim Khitrov (November 2012)
//
package flowcontrol
package flowrate
import (
"bytes"

View File

@ -2,7 +2,7 @@
// Written by Maxim Khitrov (November 2012)
//
package flowcontrol
package flowrate
import (
"math"