You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package mq
-
- import "fmt"
-
- const (
- COORDINATOR_QUEUE_NAME = "Coordinator"
- SCANNER_QUEUE_NAME = "Scanner"
- DATAMAP_QUEUE_NAME = "DataMap"
- )
-
- func MakeHubQueueName(id int64) string {
- return fmt.Sprintf("Hub@%d", id)
- }
|