File: delayed.go

package info (click to toggle)
golang-github-anacrolix-missinggo 2.1.0-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 872 kB
  • sloc: makefile: 4
file content (15 lines) | stat: -rw-r--r-- 227 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package futures

import "time"

func timeoutFuture(timeout time.Duration) *F {
	return Start(func() (interface{}, error) {
		time.Sleep(timeout)
		return nil, nil
	})
}

type Delayed struct {
	Delay time.Duration
	Fs    []*F
}