术语“节流”是什么意思?意味着当对象“节流”时一种方法
更具体地说,我正在寻找 BlackBerry 6.0 API Animator 类,其构造函数描述为“创建一个以指定帧速率限制 update() 调用的 Animator 对象”。 http://www.blackberry .com/developers/docs/6.0.0api/net/rim/device/api/animation/Animator.html
这是否仅仅意味着对象以指定的帧速率触发更新方法?
More specifically, I am looking the BlackBerry 6.0 API Animator class whose constructor describes that it "Creates an Animator object that throttles update() calls at the specified frame rate." http://www.blackberry.com/developers/docs/6.0.0api/net/rim/device/api/animation/Animator.html
Does this just mean that the object triggers the update method at the specified frame rate?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。具体来说,这意味着对象限制对特定帧速率的
update()
调用。请参阅 Google 的第一个定义。
Yes. Specifically, that means that the object limits the
update()
calls to that specific frame rate.Please see Google's first definition.