NewSubSessionItem creates a SessionItem containing a sub-session
(subSession *Session)
| 343 | |
| 344 | // NewSubSessionItem creates a SessionItem containing a sub-session |
| 345 | func NewSubSessionItem(subSession *Session) Item { |
| 346 | return Item{SubSession: subSession} |
| 347 | } |
| 348 | |
| 349 | // NewErrorItem creates a SessionItem containing a recorded error |
| 350 | func NewErrorItem(e *Error) Item { |
no outgoing calls