(ctx context.Context)
| 48 | } |
| 49 | |
| 50 | func getLogBlockData(ctx context.Context) *logBlockIdData { |
| 51 | if ctx == nil { |
| 52 | return nil |
| 53 | } |
| 54 | dataPtr := ctx.Value(logBlockIdContextKey) |
| 55 | if dataPtr == nil { |
| 56 | return nil |
| 57 | } |
| 58 | return dataPtr.(*logBlockIdData) |
| 59 | } |
| 60 | |
| 61 | func queueLogData(data wshrpc.CommandControllerAppendOutputData) { |
| 62 | select { |