diff options
author | Valery Piashchynski <[email protected]> | 2021-07-05 18:44:29 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-07-05 18:44:29 +0300 |
commit | 207739f7346c98e16087547bc510e1f909671260 (patch) | |
tree | 5c6eac27beb4eb5e127c7d8dae3464edb3359be9 /pkg/priority_queue/interface.go | |
parent | 300166eda7b138847008a7653f90753bd8397b9e (diff) |
- Update PQ
- Update ephemeral plugin, complete Push
- Add Jobs full configuration
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'pkg/priority_queue/interface.go')
-rw-r--r-- | pkg/priority_queue/interface.go | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/pkg/priority_queue/interface.go b/pkg/priority_queue/interface.go deleted file mode 100644 index 3cc1d575..00000000 --- a/pkg/priority_queue/interface.go +++ /dev/null @@ -1,11 +0,0 @@ -package priorityqueue - -type Queue interface { - Insert(item PQItem) - GetMax() PQItem -} - -type PQItem interface { - ID() string - Priority() uint64 -} |