mirror of
https://github.com/libp2p/go-libp2p-core.git
synced 2025-02-05 05:50:08 +08:00
deprecate Negotiator.NegotiateLazy (#249)
This commit is contained in:
parent
374bb62823
commit
02cbdcc419
@ -51,7 +51,6 @@ type Router interface {
|
|||||||
// Negotiator is a component capable of reaching agreement over what protocols
|
// Negotiator is a component capable of reaching agreement over what protocols
|
||||||
// to use for inbound streams of communication.
|
// to use for inbound streams of communication.
|
||||||
type Negotiator interface {
|
type Negotiator interface {
|
||||||
|
|
||||||
// NegotiateLazy will return the registered protocol handler to use
|
// NegotiateLazy will return the registered protocol handler to use
|
||||||
// for a given inbound stream, returning as soon as the protocol has been
|
// for a given inbound stream, returning as soon as the protocol has been
|
||||||
// determined. Returns an error if negotiation fails.
|
// determined. Returns an error if negotiation fails.
|
||||||
@ -59,6 +58,8 @@ type Negotiator interface {
|
|||||||
// NegotiateLazy may return before all protocol negotiation responses have been
|
// NegotiateLazy may return before all protocol negotiation responses have been
|
||||||
// written to the stream. This is in contrast to Negotiate, which will block until
|
// written to the stream. This is in contrast to Negotiate, which will block until
|
||||||
// the Negotiator is finished with the stream.
|
// the Negotiator is finished with the stream.
|
||||||
|
//
|
||||||
|
// Deprecated: use Negotiate instead.
|
||||||
NegotiateLazy(rwc io.ReadWriteCloser) (io.ReadWriteCloser, string, HandlerFunc, error)
|
NegotiateLazy(rwc io.ReadWriteCloser) (io.ReadWriteCloser, string, HandlerFunc, error)
|
||||||
|
|
||||||
// Negotiate will return the registered protocol handler to use for a given
|
// Negotiate will return the registered protocol handler to use for a given
|
||||||
|
Loading…
Reference in New Issue
Block a user