//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
#nullable disable
using System;
using Microsoft.Data.SqlClient;
using System.Diagnostics;
using Microsoft.SqlTools.ServiceLayer.BatchParser.ExecutionEngineCode;
namespace Microsoft.SqlTools.ManagedBatchParser.UnitTests.BatchParser
{
internal class BatchParserMockEventHandler : IBatchEventsHandler
{
public SqlError Error { get; private set; }
///
/// fired when there is an error message from the server
///
public void OnBatchError(object sender, BatchErrorEventArgs args)
{
Debug.WriteLine("{0}", args.Message);
Error = args.Error;
}
///
/// fired when there is a message from the server
///
public void OnBatchMessage(object sender, BatchMessageEventArgs args)
{
Debug.WriteLine("{0}", args.Message);
}
///
/// fired when there is a new result set available. It is guarnteed
/// to be fired from the same thread that called Execute method
///
public void OnBatchResultSetProcessing(object sender, BatchResultSetEventArgs args) { }
///
/// fired when we've done absolutely all actions for the current result set
///
public void OnBatchResultSetFinished(object sender, EventArgs args) { }
///
/// fired when the batch recieved cancel request BEFORE it
/// initiates cancel operation. Note that it is fired from a
/// different thread then the one used to kick off execution
///
public void OnBatchCancelling(object sender, EventArgs args) { }
}
}