(schema *rpc.ElicitationRequestedSchema)
| 1331 | } |
| 1332 | |
| 1333 | func fromRPCElicitationRequestedSchema(schema *rpc.ElicitationRequestedSchema) *ElicitationSchema { |
| 1334 | if schema == nil { |
| 1335 | return nil |
| 1336 | } |
| 1337 | return &ElicitationSchema{ |
| 1338 | Properties: schema.Properties, |
| 1339 | Required: schema.Required, |
| 1340 | } |
| 1341 | } |
| 1342 | |
| 1343 | // dispatchEvent enqueues an event for delivery to user handlers and fires |
| 1344 | // broadcast handlers concurrently. |
no outgoing calls
no test coverage detected
searching dependent graphs…