Tigase Forge
Dashboards
Projects
Global Views
Pull Requests
Issues
Builds
Packages
Code Search
Text
Files
Symbols
halcyon
Code
Files
Commits
Branches
Tags
Code Comments
Code Compare
Pull Requests
Issues
List
Boards
Iterations
Builds
Statistics
Code
Pull Request
Issue
Build
Child Projects
Projects
tigase
_libraries
halcyon
Commits
140dc6c9
ctrl
k
Sign In
Increased TickEvent frequency to allow second precision in ChatStateMachine
Customers/atom#238
Browse Code
Andrzej Wójcik (Tigase)
committed
2 months ago
140dc6c9
1 parent
65ef25f1
Push To GitHub
Build and publish to maven repo
Build maven (PR)
halcyon-core/src/jvmMain/kotlin/tigase/halcyon/core/xmpp/modules/tick/MultiContextTickTimer.kt
■
■
■ ■ ■ ■
skipped 34 lines
35
35
}
36
36
}
37
37
timer = Timer("timer", true).also {
38
-
it.scheduleAtFixedRate(tickTask,
2_000
,
2_000
)
38
+
it.scheduleAtFixedRate(tickTask,
1_000
,
1_000
)
39
39
}
40
40
}
41
41
skipped 16 lines
All occurrences
halcyon-core/src/jvmMain/kotlin/tigase/halcyon/core/xmpp/modules/tick/TickModule.jvm.kt
■
■
■ ■ ■ ■
skipped 28 lines
29
29
}
30
30
}
31
31
timer = Timer("timer", true).also {
32
-
it.schedule(tickTask,
2_000
,
2_000
)
32
+
it.schedule(tickTask,
1_000
,
1_000
)
33
33
}
34
34
logger.finest("Started timer, task: ${tickTask}, timer: ${timer}")
35
35
}
skipped 15 lines
All occurrences
halcyon-core/src/jvmMain/kotlin/tigase/halcyon/core/xmpp/modules/tick
MultiContextTickTimer.kt
TickModule.jvm.kt
Please wait...
Page is in error, reload to recover