本文整理汇总了TypeScript中neuroglancer/worker_rpc.registerRPC函数的典型用法代码示例。如果您正苦于以下问题:TypeScript registerRPC函数的具体用法?TypeScript registerRPC怎么用?TypeScript registerRPC使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了registerRPC函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: function
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @file
* This implements the authentication API by simply forwarding all requests to the frontend.
*/
import {registerRPC} from 'neuroglancer/worker_rpc';
import {Token, implementation} from 'neuroglancer/datasource/brainmaps/api_implementation';
import {rpc} from 'neuroglancer/worker_rpc_context';
let resolvePromise: (token: Token) => void = null;
implementation.getNewTokenPromise = function(invalidToken) {
let msg: any = {};
if (invalidToken != null) {
msg['invalidToken'] = invalidToken;
}
let promise =
new Promise(function(resolve, reject) { resolvePromise = resolve; });
rpc.invoke('brainmaps.requestToken', msg);
return promise;
};
registerRPC('brainmaps.receiveToken', function(x) {
let token = implementation.token = x['authResult'];
resolvePromise(token);
});
开发者ID:j6k4m8,项目名称:neuroglancer,代码行数:30,代码来源:api_backend.ts
示例2: function
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @file
* This implements the authentication API by simply forwarding all requests to the frontend.
*/
import {implementation, Token} from 'neuroglancer/datasource/brainmaps/api_implementation';
import {registerRPC} from 'neuroglancer/worker_rpc';
import {rpc} from 'neuroglancer/worker_rpc_context';
let resolvePromise: ((token: Token) => void)|null = null;
implementation.getNewTokenPromise = function(invalidToken) {
let msg: any = {};
if (invalidToken != null) {
msg['invalidToken'] = invalidToken;
}
let promise = new Promise(function(resolve, _reject) { resolvePromise = resolve; });
rpc.invoke('brainmaps.requestToken', msg);
return promise;
};
registerRPC('brainmaps.receiveToken', function(x) { resolvePromise!(x['authResult']); });
开发者ID:janelia-flyem,项目名称:neuroglancer,代码行数:30,代码来源:api_backend.ts
示例3: writeLoginStatus
writeLoginStatus('Waiting for Brain Maps authorization...', 'Retry');
authPromise = authenticateGoogleOAuth2(
{clientId: BRAINMAPS_CLIENT_ID, scopes: [BRAINMAPS_SCOPE], immediate: immediate});
authPromise.then(token => {
token['generationId'] = nextGenerationId++;
resolve(token);
}, reason => {
if (immediate) {
writeLoginStatus();
} else {
writeLoginStatus(`Brain Maps authorization failed: ${reason}.`, 'Retry');
}
});
callFinally(authPromise, () => { authPromise = undefined; });
}
login(/*immediate=*/true);
});
callFinally(tokenPromise, () => { status.dispose(); });
return tokenPromise;
};
registerRPC('brainmaps.requestToken', function(x) {
let rpc: RPC = this;
getToken(x['invalidToken']).then(function(authResult: any) {
rpc.invoke('brainmaps.receiveToken', {'authResult': authResult});
});
});
implementation.token = null;
implementation.promise = null;
开发者ID:j6k4m8,项目名称:neuroglancer,代码行数:30,代码来源:api_frontend.ts
注:本文中的neuroglancer/worker_rpc.registerRPC函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论