本文整理汇总了Golang中mojo/public/go/application.Connection类的典型用法代码示例。如果您正苦于以下问题:Golang Connection类的具体用法?Golang Connection怎么用?Golang Connection使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Connection类的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: AcceptConnection
func (psd *principalServiceDelegate) AcceptConnection(connection *application.Connection) {
app := vpkg.AppInstanceName{
Url: connection.RequestorURL(),
Qualifier: nil,
}
connection.ProvideServices(&vpkg.PrincipalService_ServiceFactory{&principalServiceImpl{app, psd}})
}
示例2: AcceptConnection
// AcceptConnection accepts incoming connection, providing and asking for echo
// service.
func (delegate *EchoDelegate) AcceptConnection(conn *application.Connection) {
if conn.RequestorURL() != pairedURL(delegate.localURL) {
panic(fmt.Sprintf("invalid requestor URL: want %v, got %v", pairedURL(delegate.localURL), conn.RequestorURL()))
}
if conn.ConnectionURL() != delegate.localURL {
panic(fmt.Sprintf("invalid connection URL: want %v, got %v", delegate.localURL, conn.ConnectionURL()))
}
echoRequest, echoPointer := echo.CreateMessagePipeForEcho()
conn.ProvideServices(&echo.Echo_ServiceFactory{delegate}).ConnectToService(&echoRequest)
checkEcho(echoPointer)
}
示例3: AcceptConnection
func (d *HttpHandlerDelegate) AcceptConnection(c *application.Connection) {
c.Close()
}
示例4: AcceptConnection
func (delegate *TestClientDelegate) AcceptConnection(connection *application.Connection) {
log.Printf("TestClientDelegate.AcceptConnection...")
connection.Close()
}
示例5: AcceptConnection
func (delegate *EchoServerDelegate) AcceptConnection(connection *application.Connection) {
connection.ProvideServices(&echo.Echo_ServiceFactory{delegate})
}
示例6: AcceptConnection
func (delegate *EchoClientDelegate) AcceptConnection(connection *application.Connection) {
connection.Close()
}
示例7: AcceptConnection
func (delegate *V23ProxyTestServerDelegate) AcceptConnection(connection *application.Connection) {
log.Printf("RemoteEchoServerDelegate.AcceptConnection...")
connection.ProvideServicesWithDescriber(
&end_to_end_test.V23ProxyTest_ServiceFactory{&delegate.factory},
)
}
示例8: AcceptConnection
func (delegate *RemoteEchoClientDelegate) AcceptConnection(connection *application.Connection) {
log.Printf("RemoteEchoClientDelegate.AcceptConnection...")
connection.Close()
}
示例9: AcceptConnection
func (delegate *RemoteEchoServerDelegate) AcceptConnection(connection *application.Connection) {
log.Printf("RemoteEchoServerDelegate.AcceptConnection...")
connection.ProvideServicesWithDescriber(
&echo.RemoteEcho_ServiceFactory{&delegate.remoteEchoFactory},
)
}
示例10: AcceptConnection
func (delegate *delegate) AcceptConnection(connection *application.Connection) {
delegate.ctx.Infof("delegate.AcceptConnection...")
connection.ProvideServices(&v23clientproxy.V23ClientProxy_ServiceFactory{delegate})
}
示例11: AcceptConnection
func (delegate *FortuneServerDelegate) AcceptConnection(connection *application.Connection) {
log.Printf("FortuneServerDelegate.AcceptConnection...")
connection.ProvideServicesWithDescriber(
&fortune.Fortune_ServiceFactory{&delegate.fortuneFactory},
)
}
示例12: AcceptConnection
func (*delegate) AcceptConnection(connection *application.Connection) {
connection.Close()
}
示例13: AcceptConnection
func (d *delegate) AcceptConnection(connection *application.Connection) {
f := &factory{d, connection.ConnectionURL()}
connection.ProvideServices(&mojom.Discovery_ServiceFactory{f})
}