Jump to content

Primož Gabrijelčič

Members
  • Content Count

    246
  • Joined

  • Last visited

  • Days Won

    11

Posts posted by Primož Gabrijelčič


  1. Yes, it fails because the owner (anonymous thread) is destroyed before the worker (Parallel.Async). You could also run into problems because the owner thread is not processing Windows messages, which is a requirement for threads that own OTL tasks. Not in this simple example, but as soon as you start sending messages towards the owner or using OnTerminate handlers you would run into trouble.


  2. This should work just fine, I wrote a very similar code today and there were no problems:

      FWorker :=
        Parallel.BackgroundWorker.NumTasks(1)
        .Execute(
          procedure (const workItem: IOmniWorkItem)
          var
            result: TTextBoxDetectorResults;
          begin
            var data := workItem.Data.ToRecord<TTextBoxDetectorData>;
            result := FAnalyzer_Asy.Analyze(data);
            workItem.Result := TOmniValue.FromRecord<TTextBoxDetectorResults>(result);
          end)
        .OnRequestDone_Asy(
           procedure (const Sender: IOmniBackgroundWorker; const workItem: IOmniWorkItem)
           begin
             var results := workItem.Result.ToRecord<TTextBoxDetectorResults>;
             OnAnalyzed_Asy(Self, workItem.UniqueID, results);
           end)

    You will have to put together a reproducible test case.


  3. 13 hours ago, Bill Meyer said:

    Second, that Amazon freely adjusts the sell price, when and as they wish.

    The same goes for Packt. They sell books for $5 (action!) without asking. They even created a monstrosity which combines both my books together and they are selling it separately (again, without asking). But they did manage to make me more money than my self-published OmniThreadLibrary book, even though their commision is much higher than LeanPubs. So they do sell many books.


  4. On 2/16/2023 at 10:53 AM, TheOnlyOne said:

    I have a question about your experience with PacktPub - how was it?

    Mixed. They do their job, but you can definitely tell that it is an Indian team behind. Everything is "yes, of course" and then maybe something happens. Or maybe not. Plus they are very set in some formulaic ways - if you want to write a book, it has to fall into some already defined slot for which they know how they want organize it and then they insist on their way (how the content should be structured, what is allowed and what not etc). That is helpful, but also limiting and frustrating.

     

    Most of the time it works the best if you also say "yes, of course" and then do it in your own way. 🙂

     

    Technical staff and editors are mediocre, at best. They definitely will not catch all errors.

     

    So - if you are looking for a perfect partner, they are not the one. If, however, you can just say "eh, whatever" from time to time and move on, they work just fine. They do pay on time, though. 

     

    As for the other publishing houses, I have no idea.

    • Like 3
    • Haha 2

  5. Variant 1: Use a 'procedure' worker (`procedure Worker(const task: IOmniTask)'). Then you can implement your message loop inside.

     

    Variant 2: Use a `TOmniWorker` descendant (as in my example). It will implement its own message loop.

     

    Variant 2a: Override parts of the TOmniWorker message loop (but I actually don't remember anymore how that is done 😠 ).

     

    You can handle most stuff with Variant 2. In addition to timers you can call Task.RegisterWaitObject to connect code to any waitable handle. See demo 31_WaitableObjects for more information. Read more here: http://www.omnithreadlibrary.com/book/chap07.html#lowlevel-iomnitask-registerwaitobject.

    • Like 1
×