RemoteProvider.ToStreamable<TPayload> Method (IQueryable<IntervalEvent<TPayload>>, AdvanceTimeSettings)

Converts sequence to temporal stream.

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function ToStreamable(Of TPayload) ( _
    source As IQueryable(Of IntervalEvent(Of TPayload)), _
    advanceTimeSettings As AdvanceTimeSettings _
) As IQStreamable(Of TPayload)
'Usage
Dim source As IQueryable(Of IntervalEvent(Of TPayload))
Dim advanceTimeSettings As AdvanceTimeSettings 
Dim returnValue As IQStreamable(Of TPayload)

returnValue = source.ToStreamable(advanceTimeSettings)
public static IQStreamable<TPayload> ToStreamable<TPayload>(
    this IQueryable<IntervalEvent<TPayload>> source,
    AdvanceTimeSettings advanceTimeSettings
)
[ExtensionAttribute]
public:
generic<typename TPayload>
static IQStreamable<TPayload>^ ToStreamable(
    IQueryable<IntervalEvent<TPayload>^>^ source, 
    AdvanceTimeSettings^ advanceTimeSettings
)
static member ToStreamable : 
        source:IQueryable<IntervalEvent<'TPayload>> * 
        advanceTimeSettings:AdvanceTimeSettings -> IQStreamable<'TPayload> 
JScript does not support generic types and methods.

Type Parameters

  • TPayload
    The payload type.

Parameters

Return Value

Type: Microsoft.ComplexEventProcessing.Linq.IQStreamable<TPayload>
The remote temporal stream.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryable<IntervalEvent<TPayload>>. 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

ToStreamable Overload

Microsoft.ComplexEventProcessing.Linq Namespace