本文整理汇总了Golang中github.com/vbatoufflet/go-livestatus.Command类的典型用法代码示例。如果您正苦于以下问题:Golang Command类的具体用法?Golang Command怎么用?Golang Command使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Command类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: DowntimeID
func DowntimeID(c *lvst.Command, i int) {
c.Arg(i)
}
示例2: Comment
func Comment(c *lvst.Command, s string) {
c.Arg(s)
}
示例3: End
func End(c *lvst.Command, t time.Time) {
c.Arg(t.Unix())
}
示例4: Fixed
func Fixed(c *lvst.Command, b bool) {
c.Arg(normalBool(b).String())
}
示例5: Delete
func Delete(c *lvst.Command, b bool) {
c.Arg(normalBool(b).String())
}
示例6: ContactGroupName
func ContactGroupName(c *lvst.Command, s string) {
c.Arg(s)
}
示例7: Sticky
func Sticky(c *lvst.Command, b bool) {
c.Arg(stickyBool(b).String())
}
示例8: NotificationNumber
func NotificationNumber(c *lvst.Command, i int) {
c.Arg(i)
}
示例9: VarName
func VarName(c *lvst.Command, s string) {
c.Arg(s)
}
示例10: StatusCode
func StatusCode(c *lvst.Command, i int) {
c.Arg(i)
}
示例11: ReturnCode
func ReturnCode(c *lvst.Command, i int) {
c.Arg(i)
}
示例12: CheckAttempts
func CheckAttempts(c *lvst.Command, i int) {
c.Arg(i)
}
示例13: Options
func Options(c *lvst.Command, i int) {
c.Arg(i)
}
示例14: CommentID
func CommentID(c *lvst.Command, i int) {
c.Arg(i)
}
示例15: HostGroupName
func HostGroupName(c *lvst.Command, s string) {
c.Arg(s)
}