Giter Site home page Giter Site logo

Comments (3)

nsk90 avatar nsk90 commented on June 3, 2024

Hi!
The quick reply is:
Here is a code which moves the data from DataEvent to a DataState
https://github.com/KStateMachine/kstatemachine/blob/master/kstatemachine/src/commonMain/kotlin/ru/nsk/kstatemachine/state/DefaultDataState.kt#L32
It is triggered in a moment of DataState activation.
In a sample that you have provided, the DataState contains initialChoiceState. This means that DataState is never activated. The ChoiceState is calculated before state activation, and the StateMachine goes directly to resulting state.
Imagine there are many ChoiceState redirections one by one. The library calculates resulting state path passing through all of ChoiceStates and activates states only on the last resulting destination (path). All intermediate state paths that were calculated during redirections are not activated. So it looks that you cannot access data from DateState in such case and butter to look directly into Event property.

The long reply:
I have to check this in runtime, this will take a while)

from kstatemachine.

nsk90 avatar nsk90 commented on June 3, 2024

But even if I do another problem occures. I then get the following exception:
java.lang.IllegalStateException: Last data is not available yet in MyDataState($38827186), and default data not provided.

I can not say why this happens, the code sample is provided for another case. You can provide another sample for this case, so I can see where the data is read from the DataState. Maybe If you read the data from Event there is no need to read it from the DataState? (and even use DataState api)

from kstatemachine.

BeAddicted avatar BeAddicted commented on June 3, 2024

Based in your first explanation I think the second problem seems to correlate. Both problems say that the data is not set even tough the state should be active. In the first case I activly try to get the data and run into an exception. In the second the statemachone itself seems to detect that there ist no data when transition into the state.

The code sample for this is pretty similar.

object MyDataState : DefaultDataState<Data>

addState(MyDataState) {
    initialChoiceState {
        if(true) {
             State1   
        }
        else {
             State2
        }
    }
}

Just dont use the Data in the code sample and make something like this (Code makes no sense but should trigger the problem, not at home to test this but pretty sure that was it).
I belive what happens ist that the state ist still triggered after the choice state but without the data event? Not really sure about that.

from kstatemachine.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.