You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SolidQueue 자체로는 대시보드를 제공하지는 않지만, mission_control-jobs 라는 것을 대시보드로 활용할 수 있다.
161
161
162
162
163
-
#### CronJob 돌리기
163
+
#### CronJob 돌리기
164
164
165
165
```
166
166
Solid Queue supports defining recurring tasks that run at specific times in the future, on a regular basis like cron jobs. These are managed by the scheduler process and are defined in their own configuration file. By default, the file is located in config/recurring.yml, but you can set a different path using the environment variable SOLID_QUEUE_RECURRING_SCHEDULE or by using the --recurring_schedule_file option with bin/jobs
@@ -181,7 +181,93 @@ production:
181
181
182
182
183
183
184
+
RecurringTask가 중복으로 들어가는 이슈가 있음.
185
+
그럴때는 SolidQueue::RecurringTask 모델을 뒤적뒤적 거려서 삭제하는 방향으로 해결할 수 있음
186
+
187
+
188
+
189
+
190
+
191
+
2024-10-15
192
+
------
193
+
194
+
## Flutter
195
+
196
+
Flutter에서 stack 안쪽에 있는 위젯에 터치 이벤트를 전달하고 싶을때는 IgnorePointer를 사용하면 된다.
197
+
198
+
IgnorePointer는 자식 위젯에게 터치 이벤트를 전달하지 않는다. 그래서 stack 위젯 안쪽에 있는 위젯에게 터치 이벤트를 전달하고 싶을때 사용하면 된다.
199
+
200
+
IgnorePointer는 본래는 hit test 결과를 무시하는 것이지만, 스냅 이벤트, 터치 이벤트 등등 이벤트 전파를 의도적으로 무시해야하는 경우에는 반드시 쓰는 것을 고려해볼 필요가 있다.
201
+
202
+
Stack은 특성상 가장 맨 뒤에 진열된 위젯이 가장 위에서 보이게 되며 그에 따라서, 터치 이벤트도 가장 위에 있는 위젯부터 전파되게 된다. 그래서 stack 위젯 안쪽에 있는 위젯에게 터치 이벤트를 전달해야 한다면, 가장 위쪽에 있는 위젯에다가 IgnorePointer를 먹여줘야만 하는 상황이 오게 된다.
0 commit comments