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


TypeScript connection.pull_session函数代码示例

本文整理汇总了TypeScript中@bokehjs/client/connection.pull_session函数的典型用法代码示例。如果您正苦于以下问题:TypeScript pull_session函数的具体用法?TypeScript pull_session怎么用?TypeScript pull_session使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了pull_session函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: pull_session

 (session1) => {
   return pull_session(server_process.url, session1.id).then(
     (session2) => {
       try {
         expect(session2.document.roots().length).to.equal(1)
         const root = session2.document.roots()[0]
         expect(root).instanceof(Range1d)
         const obj = root as Range1d
         expect(obj.start).to.equal(123)
         expect(obj.end).to.equal(456)
         expect(session2.document.title()).to.equal("Hello Title")
       } catch (e) {
         throw e
       } finally {
         session1.close()
         session2.close()
       }
       return "OK"
     },
     (error) => {
       session1.close()
       throw error
     },
   ).catch((error) => {
     // es6 promises would swallow the test errors otherwise
     throw error
   })
 },
开发者ID:digitalsatori,项目名称:Bokeh,代码行数:28,代码来源:connection.ts

示例2: with_server

 const promise = with_server((server_process) => {
   return pull_session(server_process.url, undefined, "foo=10&bar=20").then(
     (session) => {
       expect((session as any)._connection.args_string).to.be.equal("foo=10&bar=20") // XXX
       return "OK"
     },
   )
 })
开发者ID:digitalsatori,项目名称:Bokeh,代码行数:8,代码来源:connection.ts


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