RemoteProvider.GetStreamable<T1, T2, TPayload> Method (IRemoteProvider, String)

Retrieves a remote function that returns a temporal stream.

Namespace:  Microsoft.ComplexEventProcessing.Linq
Assembly:  Microsoft.ComplexEventProcessing (in Microsoft.ComplexEventProcessing.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function GetStreamable(Of T1, T2, TPayload) ( _
    provider As IRemoteProvider, _
    id As String _
) As Func(Of T1, T2, IQStreamable(Of TPayload))
'Usage
Dim provider As IRemoteProvider 
Dim id As String 
Dim returnValue As Func(Of T1, T2, IQStreamable(Of TPayload))

returnValue = provider.GetStreamable(id)
public static Func<T1, T2, IQStreamable<TPayload>> GetStreamable<T1, T2, TPayload>(
    this IRemoteProvider provider,
    string id
)
[ExtensionAttribute]
public:
generic<typename T1, typename T2, typename TPayload>
static Func<T1, T2, IQStreamable<TPayload>^>^ GetStreamable(
    IRemoteProvider^ provider, 
    String^ id
)
static member GetStreamable : 
        provider:IRemoteProvider * 
        id:string -> Func<'T1, 'T2, IQStreamable<'TPayload>> 
JScript does not support generic types and methods.

Type Parameters

  • T1
    The first parameter type.
  • T2
    The second parameter type.
  • TPayload
    The payload type.

Parameters

Return Value

Type: System.Func<T1, T2, IQStreamable<TPayload>>
The remote function that returns a temporal stream.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IRemoteProvider. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=sql.111) or https://msdn.microsoft.com/en-us/library/bb383977(v=sql.111).

See Also

Reference

RemoteProvider Class

GetStreamable Overload

Microsoft.ComplexEventProcessing.Linq Namespace