Table of Contents

Class TableSyncedEvent

Namespace
CL.MySQL2.Events
Assembly
CL.MySQL2.dll

Published after a table is synchronized (created or altered).

public record TableSyncedEvent : IEvent, IEquatable<TableSyncedEvent>
Inheritance
TableSyncedEvent
Implements
IEvent
Inherited Members

Constructors

TableSyncedEvent(string, string, bool, List<string>, TimeSpan)

Published after a table is synchronized (created or altered).

public TableSyncedEvent(string ConnectionId, string TableName, bool Created, List<string> Operations, TimeSpan Duration)

Parameters

ConnectionId string
TableName string
Created bool
Operations List<string>
Duration TimeSpan

Properties

ConnectionId

public string ConnectionId { get; init; }

Property Value

string

Created

public bool Created { get; init; }

Property Value

bool

Duration

public TimeSpan Duration { get; init; }

Property Value

TimeSpan

Operations

public List<string> Operations { get; init; }

Property Value

List<string>

TableName

public string TableName { get; init; }

Property Value

string