Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for replayItems (0.06 sec)

  1. internal/store/store.go

    	}
    	if vals := strings.Split(key.Name, "."); len(vals) == 2 {
    		key.Extension = "." + vals[1]
    		key.Name = strings.TrimSuffix(key.Name, key.Extension)
    	}
    	return
    }
    
    // replayItems - Reads the items from the store and replays.
    func replayItems[I any](store Store[I], doneCh <-chan struct{}, log logger, id string) <-chan Key {
    	keyCh := make(chan Key)
    
    	go func() {
    		defer xioutil.SafeClose(keyCh)
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Sep 06 23:06:30 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top