在后端基础应用程序引擎项目(Java)中,我正在做
Queue queue = QueueFactory.getQueue("userou-queue");
TaskOptions objTskOptions = TaskOptions.Builder.withUrl("/backendsURL/")
.countdownMillis(2000)
.header("Host", BackendServiceFactory.getBackendService().getBackendAddress("backendname"))
.method(Method.GET);
queue.add(objTskOptions);
但是现在对于模块我如何才能针对我的特定 URL 定位特定模块。
请帮我。