Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

14 lines
405 B

  1. package alils
  2. const (
  3. version = "0.5.0" // SDK version
  4. signatureMethod = "hmac-sha1" // Signature method
  5. // OffsetNewest stands for the log head offset, i.e. the offset that will be
  6. // assigned to the next message that will be produced to the shard.
  7. OffsetNewest = "end"
  8. // OffsetOldest stands for the oldest offset available on the logstore for a
  9. // shard.
  10. OffsetOldest = "begin"
  11. )