Méthode QStreamable.Scan<TSourceEvent, TSource, TResult>
Analyse un flux de données à l'aide d'un opérateur de flux de données défini par l'utilisateur.
Espace de noms : Microsoft.ComplexEventProcessing.Linq
Assembly : Microsoft.ComplexEventProcessing (en Microsoft.ComplexEventProcessing.dll)
Syntaxe
'Déclaration
<ExtensionAttribute> _
Public Shared Function Scan(Of TSourceEvent As TypedEvent(Of TSource), TSource, TResult) ( _
source As IQStreamable(Of TSource), _
initializeOp As Expression(Of Func(Of CepStreamOperator(Of TSourceEvent, TSource, TResult))) _
) As IQStreamable(Of TResult)
'Utilisation
Dim source As IQStreamable(Of TSource)
Dim initializeOp As Expression(Of Func(Of CepStreamOperator(Of TSourceEvent, TSource, TResult)))
Dim returnValue As IQStreamable(Of TResult)
returnValue = source.Scan(initializeOp)
public static IQStreamable<TResult> Scan<TSourceEvent, TSource, TResult>(
this IQStreamable<TSource> source,
Expression<Func<CepStreamOperator<TSourceEvent, TSource, TResult>>> initializeOp
)
where TSourceEvent : TypedEvent<TSource>
[ExtensionAttribute]
public:
generic<typename TSourceEvent, typename TSource, typename TResult>
where TSourceEvent : TypedEvent<TSource>
static IQStreamable<TResult>^ Scan(
IQStreamable<TSource>^ source,
Expression<Func<CepStreamOperator<TSourceEvent, TSource, TResult>^>^>^ initializeOp
)
static member Scan :
source:IQStreamable<'TSource> *
initializeOp:Expression<Func<CepStreamOperator<'TSourceEvent, 'TSource, 'TResult>>> -> IQStreamable<'TResult> when 'TSourceEvent : TypedEvent<'TSource>
JScript ne prend pas en charge les types et les méthodes génériques.
Paramètres de type
- TSourceEvent
Type d'événement source.
- TSource
Type de charge utile source.
- TResult
Type de charge utile de résultat.
Paramètres
- source
Type : Microsoft.ComplexEventProcessing.Linq.IQStreamable<TSource>
Flux de données source.
- initializeOp
Type : System.Linq.Expressions.Expression<Func<CepStreamOperator<TSourceEvent, TSource, TResult>>>
Fonction initialisant l'opérateur de flux de données défini par l'utilisateur.
Valeur de retour
Type : Microsoft.ComplexEventProcessing.Linq.IQStreamable<TResult>
Flux de résultats.
Remarque relative à l'utilisation
En Visual Basic et C#, vous pouvez appeler cette méthode comme méthode d'instance sur tout objet de type IQStreamable<TSource>. Lorsque vous utilisez la syntaxe de la méthode d'instance pour appeler cette méthode, omettez le premier paramètre. Pour plus d'informations, consultez https://msdn.microsoft.com/fr-fr/library/bb384936(v=sql.111) ou https://msdn.microsoft.com/fr-fr/library/bb383977(v=sql.111).