Student414

Results 5 comments of Student414

``` // MyTicks 自定义Ticks type MyTicks struct{} // Ticks returns Ticks in the specified range. func (MyTicks) Ticks(min, max float64) []plot.Tick { if max

reply myself: ``` uvcCamera.setFrameCallback(new IFrameCallback() { private Bitmap finalBitmap; private byte[] bufferAvoidGC; @Override public void onFrame(ByteBuffer frame) { // some operation } }, UVCCamera.PIXEL_FORMAT_RGBX); ```

api.UploadGetFile() has nested tg.AuthExportAuthorizationRequest{} calling, before UploadGetFileRequest done, it will block scheduler run(see codes of waiter.Run()), so it must cause a dead block when DC has changed. It's a bug...

I found another way to solve this problem temporary, just create 2 goroutines to work with scheduler. ```go func (w *Waiter) Run(ctx context.Context, f func(ctx context.Context) error) (err error) {...