mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-23 16:11:42 -04:00
22 lines
613 B
C#
Generated
22 lines
613 B
C#
Generated
//HintName: Test.NestingNamespaces.AndClasses.InsertData2.cs
|
|
|
|
// <auto-generated />
|
|
#nullable enable
|
|
|
|
namespace Test.NestingNamespaces
|
|
{
|
|
partial class AndClasses
|
|
{
|
|
public static SpacetimeDB.Runtime.ScheduleToken ScheduleInsertData2(
|
|
DateTimeOffset time,
|
|
PublicTable data
|
|
)
|
|
{
|
|
using var stream = new MemoryStream();
|
|
using var writer = new BinaryWriter(stream);
|
|
new PublicTable.BSATN().Write(writer, data);
|
|
return new(nameof(InsertData2), stream.ToArray(), time);
|
|
}
|
|
} // AndClasses
|
|
} // namespace
|