本文整理匯總了Golang中mojo/public/go/application.Run函數的典型用法代碼示例。如果您正苦於以下問題:Golang Run函數的具體用法?Golang Run怎麽用?Golang Run使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了Run函數的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: MojoMain
//export MojoMain
func MojoMain(handle C.MojoHandle) C.MojoResult {
application.Run(&FortuneServerDelegate{
fortuneFactory: FortuneFactory{
fortune: NewFortuneImpl(),
},
}, system.MojoHandle(handle))
return C.MOJO_RESULT_OK
}
示例2: TestApplication
func TestApplication(t *testing.T) {
var apps []*mojoApp.Application_Proxy
var responsesSent, appsTerminated sync.WaitGroup
// Create and run applications.
for i := 0; i < 2; i++ {
request, pointer := mojoApp.CreateMessagePipeForApplication()
apps = append(apps, mojoApp.NewApplicationProxy(pointer, bindings.GetAsyncWaiter()))
// Each app instance provides echo service once when it creates
// a connection and once other instance creates a connection.
responsesSent.Add(2)
appsTerminated.Add(1)
delegate := &EchoDelegate{&responsesSent, urls[i]}
go func() {
application.Run(delegate, request.PassMessagePipe().ReleaseNativeHandle())
appsTerminated.Done()
}()
}
// Provide a shell for each application.
for i := 0; i < 2; i++ {
shellRequest, shellPointer := shell.CreateMessagePipeForShell()
shellStub := shell.NewShellStub(shellRequest, &shellImpl{apps[i^1], urls[i]}, bindings.GetAsyncWaiter())
go func() {
if err := shellStub.ServeRequest(); err != nil {
panic(err)
}
shellStub.Close()
}()
apps[i].Initialize(shellPointer, &[]string{urls[i]}, urls[i])
}
// Wait and then close pipes.
responsesSent.Wait()
for i := 0; i < 2; i++ {
apps[i].RequestQuit()
}
appsTerminated.Wait()
for i := 0; i < 2; i++ {
apps[i].Close_Proxy()
}
}
示例3: MojoMain
//export MojoMain
func MojoMain(handle C.MojoHandle) C.MojoResult {
application.Run(&principalServiceDelegate{}, system.MojoHandle(handle))
return C.MOJO_RESULT_OK
}
示例4: MojoMain
//export MojoMain
func MojoMain(handle C.MojoHandle) C.MojoResult {
application.Run(&HttpHandlerDelegate{}, system.MojoHandle(handle))
return C.MOJO_RESULT_OK
}
示例5: MojoMain
//export MojoMain
func MojoMain(handle C.MojoHandle) C.MojoResult {
application.Run(&V23ProxyTestServerDelegate{}, system.MojoHandle(handle))
return C.MOJO_RESULT_OK
}
示例6: MojoMain
//export MojoMain
func MojoMain(handle C.MojoHandle) C.MojoResult {
application.Run(&RemoteEchoClientDelegate{}, system.MojoHandle(handle))
return C.MOJO_RESULT_OK
}
示例7: MojoMain
//export MojoMain
func MojoMain(handle C.MojoHandle) C.MojoResult {
application.Run(&delegate{stubs: map[*bindings.Stub]struct{}{}}, system.MojoHandle(handle))
return C.MOJO_RESULT_OK
}