当前位置: 首页>>代码示例>>Java>>正文


Java AllocateIdsResponse类代码示例

本文整理汇总了Java中com.google.datastore.v1.AllocateIdsResponse的典型用法代码示例。如果您正苦于以下问题:Java AllocateIdsResponse类的具体用法?Java AllocateIdsResponse怎么用?Java AllocateIdsResponse使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


AllocateIdsResponse类属于com.google.datastore.v1包,在下文中一共展示了AllocateIdsResponse类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: executeAsync

import com.google.datastore.v1.AllocateIdsResponse; //导入依赖的package包/类
@Override
public ListenableFuture<AllocateIdsResult> executeAsync(final AllocateIds statement) {
  final ListenableFuture<Response> httpResponse;
  try {
    final AllocateIdsRequest.Builder request = AllocateIdsRequest.newBuilder()
        .addAllKeys(statement.getPb(config.getNamespace()));
    final ProtoHttpContent payload = new ProtoHttpContent(request.build());
    httpResponse = ListenableFutureAdapter.asGuavaFuture(prepareRequest("allocateIds", payload).execute());
  } catch (final Exception e) {
    return Futures.immediateFailedFuture(new DatastoreException(e));
  }
  return Futures.transformAsync(httpResponse, response -> {
    if (!isSuccessful(response.getStatusCode())) {
      throw new DatastoreException(response.getStatusCode(), response.getResponseBody());
    }
    final AllocateIdsResponse allocate = AllocateIdsResponse.parseFrom(streamResponse(response));
    return Futures.immediateFuture(AllocateIdsResult.build(allocate));
  });
}
 
开发者ID:spotify,项目名称:async-datastore-client,代码行数:20,代码来源:DatastoreImpl.java

示例2: allocateIds

import com.google.datastore.v1.AllocateIdsResponse; //导入依赖的package包/类
public AllocateIdsResponse allocateIds(AllocateIdsRequest request) throws DatastoreException {
  try (InputStream is = remoteRpc.call("allocateIds", request)) {
    return AllocateIdsResponse.parseFrom(is);
  } catch (IOException exception) {
    throw invalidResponseException("allocateIds", exception);
  }
}
 
开发者ID:GoogleCloudPlatform,项目名称:google-cloud-datastore,代码行数:8,代码来源:Datastore.java

示例3: allocateIds

import com.google.datastore.v1.AllocateIdsResponse; //导入依赖的package包/类
@Test
public void allocateIds() throws Exception {
  AllocateIdsRequest.Builder request = AllocateIdsRequest.newBuilder();
  AllocateIdsResponse.Builder response = AllocateIdsResponse.newBuilder();
  expectRpc("allocateIds", request.build(), response.build());
}
 
开发者ID:GoogleCloudPlatform,项目名称:google-cloud-datastore,代码行数:7,代码来源:DatastoreTest.java


注:本文中的com.google.datastore.v1.AllocateIdsResponse类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。