Example #1
0
 public static Task ReadAsync(this IAccessChannel channel, IAccessItemRegistration reg)
 {
     return(channel.ReadAsync(reg.ToEnumerable()));
 }
Example #2
0
 public static IObservable <ReadData> DirectAsyncRead(this IAccessChannel channel,
                                                      IAccessItemRegistration registration)
 {
     return(channel.DirectAsyncRead(registration.ToEnumerable()).Select(rds => rds.First()));
 }
Example #3
0
 public static void Read(this IAccessChannel channel, IAccessItemRegistration reg)
 {
     channel.Read(reg.ToEnumerable());
 }