You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have downloaded the latest AWS_KCL_DotNet from GitHub. I configured the producer to write to my Stream I set up. I have a Lambda that reads the stream and see the sample records in the stream.
The Consumer is confusing to me I think because most of the logic is called from the Java library.
I changed the Main Method a bit to see if I can call the methods In the Main Method to try and do the following... Which is explained in the AWS documentation
public void Initialize(InitializationInput input)
public void ProcessRecords(ProcessRecordsInput input)
public void Shutdown(ShutdownInput input)
But none of them are exposed. where am I going wrong?
public static void Main(string[] args)
{
try
{
SampleRecordProcessor s = new SampleRecordProcessor();
var k = KclProcess.Create(s);
k.Run();
// KclProcess.Create(new SampleRecordProcessor()).Run();
}
catch (Exception e)
{
Console.Error.WriteLine("ERROR: " + e);
}
I have configured the properties correctly, I am not getting any kind of Error but I do not see any records in the DotNetKinesisSample
The text was updated successfully, but these errors were encountered:
I have downloaded the latest AWS_KCL_DotNet from GitHub. I configured the producer to write to my Stream I set up. I have a Lambda that reads the stream and see the sample records in the stream.
The Consumer is confusing to me I think because most of the logic is called from the Java library.
I changed the Main Method a bit to see if I can call the methods In the Main Method to try and do the following... Which is explained in the AWS documentation
But none of them are exposed. where am I going wrong?
I have configured the properties correctly, I am not getting any kind of Error but I do not see any records in the DotNetKinesisSample
The text was updated successfully, but these errors were encountered: