Kinetica   C#   API  Version 7.2.3.0
ICallback.cs
Go to the documentation of this file.
1 
19 using System;
20 
21 namespace Avro.IO
22 {
23  public interface ICallback<in T>
24  {
29  void HandleResult(T result);
30 
35  void HandleException(Exception exception);
36  }
37 }
void HandleException(Exception exception)
Receives an error.
void HandleResult(T result)
Receives a callback result.