You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

41 lines
1.3 KiB

  1. # -*- coding: utf-8 -*-
  2. # Copyright 2018 New Vector Ltd
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. class WorkerServerNoticesSender(object):
  16. """Stub impl of ServerNoticesSender which does nothing"""
  17. def __init__(self, hs):
  18. """
  19. Args:
  20. hs (synapse.server.HomeServer):
  21. """
  22. async def on_user_syncing(self, user_id: str) -> None:
  23. """Called when the user performs a sync operation.
  24. Args:
  25. user_id: mxid of user who synced
  26. """
  27. return None
  28. async def on_user_ip(self, user_id: str) -> None:
  29. """Called on the master when a worker process saw a client request.
  30. Args:
  31. user_id: mxid
  32. """
  33. raise AssertionError("on_user_ip unexpectedly called on worker")