affordable, light weight, comfortable - pick two.
Backpacking CAN be super expensive but it doesn't have to be. If it's your first time ever then consider renting or borrow from your friends or family.
- Backpack
| public abstract class BifrostCommand<TArgs, TResult> : Command<TResult> | |
| { | |
| private readonly TArgs _arguments; | |
| private readonly string _path; | |
| public BifrostCommand(GroupKey isolationKey, TArgs arguments, string servicePath) | |
| : base(isolationKey, TimeSpan.FromMilliseconds(15000)) // TODO make a constant available? | |
| { | |
| _arguments = arguments; | |
| _path = servicePath; |
| /// <summary> | |
| /// This is the C# representation of an SNS message. Its property names should not be modified unless AWS changes their spec. | |
| /// </summary> | |
| public sealed class SnsMessage | |
| { | |
| #region Properties that apply to both Subscription Confirmation and Notification messages | |
| public string Message { get; set; } |