科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道应用软件ASP.NET2.0中数据源控件之异步数据访问(2)

ASP.NET2.0中数据源控件之异步数据访问(2)

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

建立了 WeatherDataSource 控件,该控件针对 weather.com(英文)所提供的 XML API 来运行,使用 WebRequest 和 WebResponse 来通过 HTTP 访问数据。此处要介绍的是如何在数据源控件中利用此功能,使用加载项框架来实现异步数据源。

作者:Nikhil Kothari 来源:msdn  2007年9月2日

关键字:

  • 评论
  • 分享微博
  • 分享邮件
示例

现在,新的 AsyncWeatherDataSource 将从 AsyncDataSourceControl 中派生,而 AsyncWeatherDataSourceView 将从 AsyncDataSourceView 中派生。

public class AsyncWeatherDataSource : AsyncDataSourceControl {

//与 WeatherDataSource 相同

}

private sealed class AsyncWeatherDataSourceView : AsyncDataSourceView {

private AsyncWeatherDataSource _owner;

private WeatherService _weatherService;

public AsyncWeatherDataSourceView(AsyncWeatherDataSource owner,

string viewName)

: base(owner, viewName) {

_owner = owner;

}

protected override IAsyncResult BeginExecuteSelect(DataSourceSelectArguments arguments,

AsyncCallback asyncCallback,

object asyncState) {

arguments.RaiseUnsupportedCapabilitiesError(this);

string zipCode = _owner.GetSelectedZipCode();

if (zipCode.Length == 0) {

return new SynchronousAsyncSelectResult(/* selectResult */

null,

asyncCallback, asyncState);

}

_weatherService = new WeatherService(zipCode);

return _weatherService.BeginGetWeather(asyncCallback, asyncState);

}

protected override IEnumerable EndExecuteSelect(IAsyncResult asyncResult) {

SynchronousAsyncSelectResult syncResult =

asyncResult as SynchronousAsyncSelectResult;

if (syncResult != null) {

return syncResult.SelectResult;

}

else {

Weather weatherObject =

_weatherService.EndGetWeather(asyncResult);

_weatherService = null;

if (weatherObject != null) {

return new Weather[] { weatherObject };

}

}

return null;

}

}

要注意的关键问题是,在使用该框架时,只需要实现 BeginExecuteSelect 和 EndExecuteSelect。在它们的实现过程中,通常要调用由该框架中的各种对象(例如 WebRequest 或 IO 流)所揭示的 BeginXXX 和 EndXXX 方法(在 Visual Studio 2005 中,还需要调用 SqlDataCommand),并返回 IAsyncResult。在此示例中,有一个封装了基础 WebRequest 对象的 WeatherService 帮助程序类。

对于那些实际缺少异步模式的框架,您在此会看到有效的异步模式;以及您要实现的 BeginExecuteSelect 和 EndExecuteSelect,和您要调用以返回 IAsyncResult 实例的 Begin 和 End 方法。

最有趣的可能是 SynchronousAsyncSelectResult 类(在某种程度上而言是一种矛盾)。此类是框架附带的。它基本上是一个 IAsyncResult 实现,可使数据立即可用,并从其 IAsyncResult.CompletedSynchronously 属性报告 true。到目前为止,这仅适用于未选择邮政编码的情况,并且需要返回 null(启动异步任务而只返回 null 是没有意义的),但正如您会在下文中看到的,这在其他方案中也是有用的。

页面基础结构隐藏了在 Microsoft ASP.NET 上下文中执行异步工作的大部分详细信息。希望在此提供的框架使您执行最少的操作就能编写使用此基础结构的数据源。不过,就其本质而言,实现异步行为是复杂的。

查看本文来源

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章