本文整理汇总了Golang中mojo/public/go/application.Connection.RequestorURL方法的典型用法代码示例。如果您正苦于以下问题:Golang Connection.RequestorURL方法的具体用法?Golang Connection.RequestorURL怎么用?Golang Connection.RequestorURL使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mojo/public/go/application.Connection
的用法示例。
在下文中一共展示了Connection.RequestorURL方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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)
}