seekia/internal/network/myBroadcastStatus/myBroadcastStatus.go

10 lines
558 B
Go

// myBroadcastStatus provides functions to track how many times a user's content has been broadcast, when it was broadcast, and to whom.
// This helps to track which content is the least broadcasted and would benefit the most from a rebroadcast.
// For example, we want to prioritize broadcasting messages we have not broadcasted yet over ones which we have already broadcasted many times.
package myBroadcastStatus
//TODO: Build this package
// We can also stop broadcasting messages once the recipient has acknowledged that they have seen the message.