Home
last modified time | relevance | path

Searched refs:GrpcTask (Results 1 – 6 of 6) sorted by relevance

/external/grpc-grpc/src/android/test/interop/app/src/main/java/io/grpc/interop/cpp/
DInteropActivity.java42 private GrpcTask grpcTask;
69 grpcTask = new GrpcTask(this); in doPingPong()
76 private static class GrpcTask extends AsyncTask<String, Void, String> { class in InteropActivity
79 private GrpcTask(InteropActivity activity) { in GrpcTask() method in InteropActivity.GrpcTask
/external/grpc-grpc/examples/android/helloworld/app/src/main/java/io/grpc/helloworldexample/cpp/
DHelloworldActivity.java46 private GrpcTask grpcTask;
82 grpcTask = new GrpcTask(this); in sendMessage()
124 private static class GrpcTask extends AsyncTask<String, Void, String> { class in HelloworldActivity
127 private GrpcTask(HelloworldActivity activity) { in GrpcTask() method in HelloworldActivity.GrpcTask
/external/grpc-grpc-java/examples/android/helloworld/app/src/main/java/io/grpc/helloworldexample/
DHelloworldActivity.java65 new GrpcTask(this) in sendMessage()
72 private static class GrpcTask extends AsyncTask<String, Void, String> { class in HelloworldActivity
76 private GrpcTask(Activity activity) { in GrpcTask() method in HelloworldActivity.GrpcTask
/external/grpc-grpc-java/examples/android/routeguide/app/src/main/java/io/grpc/routeguideexample/
DRouteGuideActivity.java100 new GrpcTask(new GetFeatureRunnable(), channel, this).execute(); in getFeature()
106 new GrpcTask(new ListFeaturesRunnable(), channel, this).execute(); in listFeatures()
112 new GrpcTask(new RecordRouteRunnable(), channel, this).execute(); in recordRoute()
118 new GrpcTask(new RouteChatRunnable(), channel, this).execute(); in routeChat()
141 private static class GrpcTask extends AsyncTask<Void, Void, String> { class in RouteGuideActivity
146 GrpcTask(GrpcRunnable grpcRunnable, ManagedChannel channel, RouteGuideActivity activity) { in GrpcTask() method in RouteGuideActivity.GrpcTask
/external/grpc-grpc-java/examples/android/clientcache/app/src/main/java/io/grpc/clientcacheexample/
DClientCacheExampleActivity.java83 new GrpcTask(this, cache) in sendMessage()
93 private static class GrpcTask extends AsyncTask<Object, Void, String> { class in ClientCacheExampleActivity
98 private GrpcTask(Activity activity, SafeMethodCachingInterceptor.Cache cache) { in GrpcTask() method in ClientCacheExampleActivity.GrpcTask
/external/grpc-grpc-java/examples/example-kotlin/android/helloworld/app/src/main/kotlin/io/grpc/helloworldexample/
DHelloworldActivity.kt53 GrpcTask(this) in onClick()
60 private class GrpcTask constructor(activity: Activity) : AsyncTask<String, Void, String>() { class in io.grpc.helloworldexample.HelloworldActivity