Sign in

wms / hhwms · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • hhwms
  • ..
  • service
  • BackQueue.java
  • 回传方式改为 任务回传
    5ea583b6
    tongzhonghao authored
    2022-09-23 11:51:30 +0800  
    Browse Dir »
BackQueue.java 229 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11
package com.huaheng.pc.task.taskHeader.service;

public interface BackQueue {
    /**
     * 回传
     * @param taskId 任务id
     * @param callBack 回调函数
     */
    void receiveBack(int taskId,CallBack callBack);

}