當前位置: 首頁>>代碼示例>>Golang>>正文


Golang OutStream.SetListener方法代碼示例

本文整理匯總了Golang中github.com/hraban/lush/liblush.OutStream.SetListener方法的典型用法代碼示例。如果您正苦於以下問題:Golang OutStream.SetListener方法的具體用法?Golang OutStream.SetListener怎麽用?Golang OutStream.SetListener使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/hraban/lush/liblush.OutStream的用法示例。


在下文中一共展示了OutStream.SetListener方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: connectCmdsById

func connectCmdsById(s *server, fromId, toId liblush.CmdId, streamname string) error {
	var stream liblush.OutStream
	var to, from liblush.Cmd
	from = s.session.GetCommand(fromId)
	if from == nil {
		return errors.New("unknown command in from")
	}
	switch streamname {
	case "stdout":
		stream = from.Stdout()
	case "stderr":
		stream = from.Stderr()
	default:
		return errors.New("unknown stream")
	}
	if toId == 0 {
		return disconnectStream(stream)
	}
	to = s.session.GetCommand(toId)
	if to == nil {
		return errors.New("unknown command in to")
	}
	if pipedcmd(stream) != nil {
		// not strictly necessary but makes for simpler API. service to the
		// user! because that is how we roll. EaaS.
		return errors.New("already connected to another command")
	}
	stream.SetListener(to.Stdin())
	return nil
}
開發者ID:hraban,項目名稱:lush,代碼行數:30,代碼來源:websocket.go

示例2: disconnectStream

func disconnectStream(stream liblush.OutStream) error {
	var fwd liblush.Cmd
	fwd = pipedcmd(stream)
	if fwd == nil {
		return errors.New("no connected command found")
	}
	stream.SetListener(liblush.Devnull)
	return nil
}
開發者ID:hraban,項目名稱:lush,代碼行數:9,代碼來源:websocket.go


注:本文中的github.com/hraban/lush/liblush.OutStream.SetListener方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。