本文整理汇总了Golang中github.com/cocaine/cocaine-flow/backend.Cocaine.ApplicationStart方法的典型用法代码示例。如果您正苦于以下问题:Golang Cocaine.ApplicationStart方法的具体用法?Golang Cocaine.ApplicationStart怎么用?Golang Cocaine.ApplicationStart使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/cocaine/cocaine-flow/backend.Cocaine
的用法示例。
在下文中一共展示了Cocaine.ApplicationStart方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: ApplicationStart
func ApplicationStart(cocs backend.Cocaine, w http.ResponseWriter, r *http.Request) {
name := r.FormValue("name")
profile := r.FormValue("profile")
if len(name) == 0 || len(profile) == 0 {
http.Error(w, "name or profile wasn't specified", http.StatusInternalServerError)
return
}
stream, err := cocs.ApplicationStart(name, profile)
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
if f, ok := w.(http.Flusher); !ok {
for {
var p []byte
_, err := stream.Read(p)
fmt.Println(p, err)
if err != nil {
break
}
w.Write(p)
f.Flush()
}
} else {
body, _ := ioutil.ReadAll(stream)
fmt.Fprintf(w, "%s", body)
}
}