Questions tagged [real-time-java]

Real time Java is a catch-all term for a combination of technologies that allows programmers to write programs that meet the demands of real-time systems in the Java programming language.

The term real-time Java is usually referring to a technology that allows developers to develop Java programs for real-time systems.

To overcome typical real time difficulties, the Java Community introduced a specification for real-time Java, JSR001, called Real-Time Specification for Java (RTSJ).

RTSJ is the most widely known implementation of real-time Java and the two terms are often used interchangeably.

18 questions
0
votes
3 answers

How to run main thread as a real time thread

In real time Java one can create a real time thread and run it via the following methods: RealtimeThread rt = new RealtimeThread(){ public void run(){ /*do work*/ } }; rt.start(); RealtimeThread rt2 = new…
wmjdgla
  • 101
  • 1
  • 8
0
votes
2 answers

How to fix while loop error login logout system (no database) (also is there a code about session time)?

I create a basic login and logout system (no database) with the only username given for my school homework, but I have problems with while loops and also session time. I tried to copy and paste a group of codes to different parts of this main code…
0
votes
1 answer

Struct Javolution Lib Byteorder and Byte alignment

How to set the byte or word alignment using javolution lib. This is like #pragma in CPP. I am little bit confuse about the byte order. Please suggest me for the byte Order set in the same library.
Kamahire
  • 2,149
  • 3
  • 21
  • 50
1
2