21 lines
309 B
Go
21 lines
309 B
Go
package producers
|
|
|
|
type Producer interface {
|
|
WritePsToChan(psChan chan int)
|
|
GetCountPorts() int
|
|
}
|
|
|
|
type Generator struct {
|
|
}
|
|
|
|
func (g Generator) WritePsToChan(psChan chan int) {
|
|
for i := 1; i <= cap(psChan); i++ {
|
|
psChan <- i
|
|
}
|
|
close(psChan)
|
|
}
|
|
|
|
func (g Generator) GetCountPorts() int {
|
|
return 65536
|
|
}
|