Show / Hide Table of Contents

Interface IOutputData

An interface defining an output parameters data.

Namespace: MESL.SqlRace.Domain.Functions
Assembly: MESL.SqlRace.Domain.dll
Syntax
public interface IOutputData : IDisposable

Methods

Write(Int64, Byte)

Writes a byte to the output data.

Declaration
void Write(long timestamp, byte value)
Parameters
Type Name Description
System.Int64 timestamp

The timestamp for value.

System.Byte value

The byte to write.

Write(Int64, Double)

Writes a double to the output data.

Declaration
void Write(long timestamp, double value)
Parameters
Type Name Description
System.Int64 timestamp

The timestamp for value.

System.Double value

The double value to write.

Write(Int64, Int16)

Write a short to the output data.

Declaration
void Write(long timestamp, short value)
Parameters
Type Name Description
System.Int64 timestamp

The timestamp for value.

System.Int16 value

The short value to write.

Write(Int64, Int32)

Write an integer to the output data.

Declaration
void Write(long timestamp, int value)
Parameters
Type Name Description
System.Int64 timestamp

The timestamp for value.

System.Int32 value

The integer to write.

Write(Int64, SByte)

Writes a signed byte to the output data.

Declaration
void Write(long timestamp, sbyte value)
Parameters
Type Name Description
System.Int64 timestamp

The timestamp for value.

System.SByte value

The signed byte to write.

Write(Int64, Single)

Write a float to the output data.

Declaration
void Write(long timestamp, float value)
Parameters
Type Name Description
System.Int64 timestamp

The timestamp for value.

System.Single value

The float to write.

Write(Int64, UInt16)

Write an unsigned short to the output data.

Declaration
void Write(long timestamp, ushort value)
Parameters
Type Name Description
System.Int64 timestamp

The timestamp for value.

System.UInt16 value

The unsigned value to write.

Write(Int64, UInt32)

Write an unsigned integer to the output data.

Declaration
void Write(long timestamp, uint value)
Parameters
Type Name Description
System.Int64 timestamp

The timestamp for value.

System.UInt32 value

The unsigned value to write.

Back to top Generated by DocFX