in code/Storage/TableNames.cs [61:96]
public static string TableName(TableNames.TableType tableType, string runId)
{
switch (tableType)
{
// Download table stores data received from OBA servers.
case TableNames.TableType.Download:
return tableType.ToString() + runId;
// DownloadMetada table stores bookkeeping records of download activity.
case TableNames.TableType.DownloadMetadata:
return tableType.ToString();
// Diff table stores diffs between a download table and a publish table.
case TableNames.TableType.Diff:
return tableType.ToString() + runId;
// DiffMetadata table stores bookkeeping records of diff activity.
case TableNames.TableType.DiffMetadata:
return tableType.ToString();
// Publish table stores data that has been published to Embedded Social.
case TableNames.TableType.Publish:
return tableType.ToString();
// PublishMetadata table stores bookkeeping records of publish activity.
case TableNames.TableType.PublishMetadata:
return tableType.ToString();
// Metadata table stores bookkeeping records of overall activity in this service.
case TableNames.TableType.Metadata:
return tableType.ToString();
default:
throw new ArgumentOutOfRangeException("tableType");
}
}