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


C# IObservable.Do方法代码示例

本文整理汇总了C#中IObservable.Do方法的典型用法代码示例。如果您正苦于以下问题:C# IObservable.Do方法的具体用法?C# IObservable.Do怎么用?C# IObservable.Do使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IObservable的用法示例。


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

示例1: Download

 public IObservable<StorageObject> Download(IObservable<Activity> input, StorageSession session, String param, IDictionary<String, String> args)
 {
     IDisposable _ = session.SuppressDispose();
     return input
         .Do(a => a.Act("Body", ((HttpWebResponse) WebRequest.Create(a.GetValue<String>()).GetResponse()).If(
             r => (Int32) r.StatusCode < 300,
             r => new Byte[r.ContentLength].Apply(b => r.GetResponseStream().Dispose(s => s.Read(b, 0, b.Length))),
             r => new Byte[0]
         )))
         .Finally(_.Dispose);
 }
开发者ID:takeshik,项目名称:metatweet-old,代码行数:11,代码来源:SystemFlow.cs

示例2: Initialize

        /// <summary>
        /// Initialize message bus
        /// </summary>
        public void Initialize()
        {
            // Set the maximum number of concurrent connections
            ServicePointManager.DefaultConnectionLimit = 12;

            // Create the queue if it does not exist already
            AzureServerConnectionString = PinkoConfiguration.GetSetting("Microsoft.ServiceBus.ConnectionString");

            //Uri uri = ServiceBusEnvironment.CreateServiceUri("sb", "ingham-blog", string.Empty);
            //string name = "owner";
            //string key = "abcdefghijklmopqrstuvwxyz";

            //TokenProvider tokenProvider = TokenProvider.CreateSharedSecretTokenProvider("pinko-app-bus", "S6c6FYYpdWvOLscjmUyJWQDiQd01gxENzm+W/FSjOk4=");
            //NamespaceManager namespaceManager = new NamespaceManager(uri, tokenProvider);

            Trace.TraceInformation("Creating AzureNamespaceManager: {0}...", AzureServerConnectionString);
            _azureNamespaceManager = NamespaceManager.CreateFromConnectionString(AzureServerConnectionString);

            // Set WorkerRole outbound Rx bus
            _applicationBusMessageSend = PinkoApplication.GetSubscriber<IBusMessageOutbound>();

            // Set listener for outbound messages
            _applicationBusMessageSend
                .Do(x => Trace.TraceInformation("Sending: {0}", x.Verbose()))
                .ObserveOn(Scheduler.ThreadPool)
                .Subscribe(x => GetQueue(string.IsNullOrEmpty(x.ReplyTo) ? x.QueueName : x.ReplyTo).Send(x));
        }
开发者ID:cotmechy,项目名称:PinkoAzure,代码行数:30,代码来源:AzureBusMessageServer.cs

示例3: Configure

 public IObservable<FileSystemChange> Configure(IObservable<FileSystemChange> observable)
 {
     return observable.Do(Console.WriteLine);
 }
开发者ID:slashdotdash,项目名称:Duplicity,代码行数:4,代码来源:WithADuplicator.cs


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