mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-07-29 14:23:09 +02:00
This abstracts out a common pattern where we wait for a send on a channel, and timeout otherwise.
19 lines
377 B
Go
19 lines
377 B
Go
package lnutils
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
// RecvOrTimeout attempts to recv over chan c, returning the value. If the
|
|
// timeout passes before the recv succeeds, an error is returned
|
|
func RecvOrTimeout[T any](c <-chan T, timeout time.Duration) (*T, error) {
|
|
select {
|
|
case m := <-c:
|
|
return &m, nil
|
|
|
|
case <-time.After(timeout):
|
|
return nil, fmt.Errorf("timeout hit")
|
|
}
|
|
}
|