在其他stackoverflow问题的答案中:https://stackoverflow.com/a/41360829/1932522和https://stackoverflow.com/a/40557237/1932522提供了一些示例,说明如何使用TaskCompletionSource
能够在任务中运行延迟调用。
在一个简单的例子中实现这个(在下面提供)时,我遇到了行.continueWith( new TaskerB() ));
无法编译的问题,因为编译器期望一个Task作为第一个参数:Incompatible equality constraint: Task<String> and String
,我会期望这个参数应该只是String类型?谁可以帮助我们使用此代码,并向我解释如何成功使用TaskCompletionSource
。
注意:示例非常简单,实际使用中我会运行Firestore操作,设置一个侦听器并从侦听器内部调用tcs.setResult(..)
。
public class StartTask implements Callable<Integer>{
@Override
public Integer call() throws Exception {
return 1;
}
}
public class TaskerA implements Continuation< Integer, Task<String>>{
@Override
public Task<String> then(@NonNull Task<Integer> task) throws Exception {
final TaskCompletionSource<String> tcs = new TaskCompletionSource<>();
tcs.setResult( "value: " + task.getResult() );
return tcs.getTask();
}
}
public class TaskerB implements Continuation< String, Void>{
@Override
public Void then(@NonNull Task<String> task) throws Exception {
Log.d(TAG, "Output is: " + task.getResult());
return null;
};
}
public void runExample(){
Tasks.call( new StartTask() )
.continueWith( new TaskerA() )
.continueWith( new TaskerB() ));
}
答案 0 :(得分:2)
改为使用continueWithTask
:
Tasks.call(new StartTask())
.continueWithTask(new TaskerA())
.continueWith(new TaskerB());