Class StoreGeoInfoTransaction

java.lang.Object
com.djrapitops.plan.storage.database.transactions.Transaction
com.djrapitops.plan.storage.database.transactions.events.StoreGeoInfoTransaction

public class StoreGeoInfoTransaction extends Transaction
Transaction to update Geo information of a player in the database.
  • Constructor Details

    • StoreGeoInfoTransaction

      public StoreGeoInfoTransaction(UUID playerUUID, String ip, long time, UnaryOperator<String> geolocationFunction)
    • StoreGeoInfoTransaction

      public StoreGeoInfoTransaction(UUID playerUUID, InetAddress ip, long time, UnaryOperator<String> geolocationFunction)
    • StoreGeoInfoTransaction

      public StoreGeoInfoTransaction(UUID playerUUID, GeoInfo geoInfo)
  • Method Details

    • performOperations

      protected void performOperations()
      Description copied from class: Transaction
      Implement this method for transaction execution.
      Specified by:
      performOperations in class Transaction